利用C语言,编写一个程序,将两个字符串连接起来,不要用strcat或strncat函数。 /* 编写一个程序,将两个字符串连接起来,不要用strcat或strncat函数。 */ #include <stdio.h> int main() { char a[100] = "sreere", b[5<