如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
1
9
10
0
34
4
35
3
char b[10]={'H','e','l','l','o','!'};
char b[10]; b="Hello!";
char b[10]; strcpy(b,"Hello!");
char b[10]="Hello!";
6
12
5
<=
=
%
&&
enum a={one,two,three};
enum a{one=9,two=-1,three};
enum a={″one″,″two″,″three″};
enum a{″one″,″two″,″three″};
0xFF
1.2e0.5
2L
'\72'
struct结构体类型的关键字
example是结构体类型名
x,y,z都是结构体成员名
struct ex是结构体类型
10<回车>22<回车>33<回车>
10.0,22.0,33.0<回车>
10.0<回车>22.0 33.0<回车>
10 22<回车>33<回车>
提交答案
推荐工具