编一程序,将两个字符串连接起来,不要用strcat函数。

【描述】

编一程序,将两个字符串连接起来,不要用strcat函数。

【输出示例】

Hellworld!

【C语言】


#include
#include
int main() {
	char a[20]="Hello", b[20]=" world!";
	int i;
	for (i = strlen(a)+1; i < 20; i++)
		a[i]= b[i-strlen(a)];
	for (i = 0; i < 20; i++)
		printf("%c", a[i]);
	return 0;
}



你可能感兴趣的:(C)