如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
1
7
9
11
void fun (int x, int y);
fun (int x, int y);
int fun (int x,y);
char *fun (char *s);
&x
&p
x
*x
0
29
31
无定值
*(a[1]+1)
*(&a[1][1])
(*(a+1))[1]
*(a+5)
10
8
enum s={a,b,c}
enum s {a=9,b=2,c}
enum s={'a', 'b', 'c'}
enum s {'a', 'b', 'c'}
30
1 -2
死循环
用typedef可以增加新的类型
用typedef可以定义各种类型名,但不能用来定义变量
用typedef只是将已有的类型用新的标识符来代表
使用typedef有利于程序的通用和移植
4
5
提交答案
推荐工具