单选题 下面程序的输出结果是______。
main()

char str[10],c='a';
int i=0;
for(;i<5;i++)
Str[i]=c++;
printf("%s",str);


【正确答案】 C
【答案解析】[评析] 字符串少一个结束标志,所以输出的结果不确定。