#询问下复制结束后的s2字符串中的内容是什么?
是否为A与B与C与'\0'与空格与'\0这六个字符?因此会输出这个结果。
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<math.h>
#include<string.h>
int main()
{
char s1[] = "abc";
char s2[] = "abc ";
char s3[] = "Abc";
strcpy(s2, s3);
for (int i = 0; i < 3; i++)
{
printf("%c#", s2[i]);
}
printf("\n");
printf("sizeof(s2)=%d", sizeof(s2));
}
输出结果如下