单项选择题

下面程序的输出结果是()。
main()

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

A. abcde
B. a
C. 不确定
D. bcdef