请帮助我,我无法解决我在大学遇到的这个问题。我在我们大学论坛上问过,他们说这个线索:“如果你向strcat发送一个长字符串,或者你发送字符串B,有什么区别?”
解释下一个程序有什么问题:
#include <string.h>
#include <stdio.h>
int main()
{
char A[10];
char B[20];
strcpy(A, "A student");
strcpy(B, "fail the exam");
printf("%s\n", strcat(A, B));
return 0;
}