如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
struct结构体类型的关键字
example是结构体类型名
x,y,z都是结构体成员名
struct ex是结构体类型
(*p).data.a
(*p).a
p->data.a
p.data.a
00011100
00010100
0001000
00011011
不定值
4
3
1
0
29
31
无定值
10
12
21
28
VAR
cher
integer
default
15
14
不确定
-3
9
-12
6
void fun (int x, int y);
fun (int x, int y);
int fun (int x,y);
char *fun (char *s);
提交答案
推荐工具