为什么strelen(a)的长度会是25?
#include "stdafx.h"#include "stdio.h"
#include "string.h"
int _tmain(int argc, _TCHAR* argv[])
{
char c[15]="pascal program";
char b[6]="hello";
char a[10]={'a',' ','t','f','f','u','k','s','w','w'};
strcpy(c,b);
printf("%s",c);
printf(" %d %d\n",strlen(c),strlen(a));
return 0;
}