填空题
设有以下定义和语句:
int a[3][2]={1,2,3,4,5},*p[3];
p[0]=a[1];
则*(p[0]+1)所代表的数组元素是 【14】 。
【参考答案】
a[1][1]
热门
试题
填空题
有以下程序:void f(int*x,iht * y){ int t;t=*x;*x;=*y;*y=t;}main(){ int a[8]={1,2,3,4,5,6,7,8},i,*p,*q;p=a;q=&a[7];while(p){ f(p,q);p++;q--;}for(i=0;i<8;i++)printf( %d, ,a[i]);}程序运行后的输出结果是 【11】 。