#include<stdio.h>
#include<string.h>
#define TEXTLEN 10000
#define BUFFERSIZE 100
int main(void)
{
char text[TEXTLEN];
char buffer[BUFFERSIZE];
printf("%d",strlen(text));
printf("\n%d",strlen(buffer));
}
输出结果是 10011
          10119
这是什么原因呢,数组一定要初始化吗?