问题详情
有以下定义: #include <stdio.h> char a[10], *b=a; 下面不能给数组a输入字符串的语句是()。
A.gets(a)
B.gets(a[0]);
C.gets(&a[0]);
D.gets(b);
请帮忙给出正确答案和分析,谢谢!