编一程序,将两个字符串连接起来,不要用strcat函数。
编一程序,将两个字符串连接起来,不要用strcat函数。 【输出示例】 Hello world! 【C语言】 #include<stdio.h> #include<string.h> int main() { char a[...
C++怎样把两个字符串连接在一起?
C++怎样把两个字符串连接在一起?10 用字符串函数,要注释!满意答案...#include <string.h> void main(){ char str1[10] = "abc", str2[] ...