问题详情
有定义语句: char s[10]; ,若要从终端给 s 输入 5 个字符,错误的输入语句是
A)gets(&s[0]);
B)scanf("%s",s+1);
C)gets(s);
D)scanf("%s",s[1]);