填空题
以下程序运行后的输出结果是
1
。
int k=1,j=2,*p=&k,*q=p;
p=&j;
printf("*p=/%d, *q=/%d\n",*p,*q);
1、
【正确答案】
1、*P=2,*q=1
【答案解析】
提交答案
关闭