如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
0
29
31
无定值
14
3
9
字符串中有非法字符
8,10,16
8,10,10
10,10,10
10,10,16
<=
=
%
&&
enum a={one,two,three};
enum a{one=9,two=-1,three};
enum a={″one″,″two″,″three″};
enum a{″one″,″two″,″three″};
1
6.0
2.0
1.0
char b[10]={'H','e','l','l','o','!'};
char b[10]; b="Hello!";
char b[10]; strcpy(b,"Hello!");
char b[10]="Hello!";
7
11
enum s={a,b,c}
enum s {a=9,b=2,c}
enum s={'a', 'b', 'c'}
enum s {'a', 'b', 'c'}
2,M
3,E
2,E
输出项与对应的格式控制不一致,输出结果不确定
提交答案
推荐工具