问题详情
有以下程序段 main() { char a[7]="abcdef"; charb[4]="ABC"; strcpy(a,b) ; printf("%c",a[5]); } 程序段运行后的输出结果是()
A.a
B.\0
C.e
D.f
请帮忙给出正确答案和分析,谢谢!