若有int a[3][4];*(a+1)+2表示a[1][2]元素的地址.
查看答案
有如下说明:int a[10]={1,2,3,4,5,6,7,8,9,10},*p=a; 则数值为9的表达式是 *(P+8).
A. 对
B. 错
char (*p)[6]; 若p值为1000,则p++;后p值为1006.
A. 对
B. 错
char *match(char c){ }说明函数的返回值为字符型指针.
A. 对
B. 错
动态存储分配,可调用函数malloc(),如int *p;p=(int *)malloc(sizeof(p));
A. 对
B. 错