如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
enum a={one,two,three};
enum a{one=9,two=-1,three};
enum a={″one″,″two″,″three″};
enum a{″one″,″two″,″three″};
34
4
35
3
1
7
9
11
(*p).data.a
(*p).a
p->data.a
p.data.a
?a
a=2
a.3
a_3
*((*prt+1)[2])
*(*(p+5))
(*prt+1)+2
*(*(a+1)+2)
用typedef可以增加新的类型
用typedef可以定义各种类型名,但不能用来定义变量
用typedef只是将已有的类型用新的标识符来代表
使用typedef有利于程序的通用和移植
3 0
1 -2
死循环
4 4
2 2
2 4
4 6
*p
a[10]
*a
a[p-a]
提交答案
推荐工具