#include <stdio.h>
#include <string.h>
void main()
{
char st[20]="hello\0\t\\\";
printf("%d %d\n",strlen(st),sizeof(st));
}
这个语句哪里错了,还有为什么strlen(st)=5
#include <stdio.h>
#include <string.h>
void main()
{
char st[20]="hello\0\t\\\";
printf("%d %d\n",strlen(st),sizeof(st));
}
这个语句哪里错了,还有为什么strlen(st)=5