#include <stdio.h>
#include <string.h>
main()
{char str1[20]="i am a",str2[10]="student.";
strcpy(str1,str2);
puts(str1);
}
为什么没法连接起来??得到 i am a stodent.
#include <stdio.h>
#include <string.h>
main()
{char str1[20]="i am a",str2[10]="student.";
strcpy(str1,str2);
puts(str1);
}
为什么没法连接起来??得到 i am a stodent.
strcpy是字符串的拷贝函数
不是连接