1. typedef int (*func_p)(int)
func_p p
p代表什么意思?
2.int(*a[10])(int) a代表什么意思??
3.char str[]="GE";
char *str2 = str;
sizeof(str)=? sizeof(str2)=?
4.有關(guān)malloc的程序判斷,具體的給忘了,就是看一下字符串空間的分配。
5.關(guān)鍵字volatile的含義,在程序設(shè)計(jì)過(guò)程中的應(yīng)用?
6.const int *p1;
int const *p2;
int *const p3;
7.int a = -1;
unsigned int b = 2;
那么a+b>a?為什么?a+b>b?為什么?