有以下程序: #include main() {intn,*p=NULL; *p=&n; printf("Inputn:");scanf("%d",&p);printf("outputn:");printf("%d\n",p); } 该程序试图通过指针p为

admin2019-12-17  48

问题 有以下程序:
#include
main()
{intn,*p=NULL;
*p=&n;
printf("Inputn:");scanf("%d",&p);printf("outputn:");printf("%d\n",p);
}
该程序试图通过指针p为变量n读入数据并输出,但程序有多处错误,以下语句正确的是(    )。

选项 A、int  n,*p=NULL;
B、*p=&n;
C、scanf("%d",&p)
D、printf("%d\n",p);

答案A

解析 选项B)的正确写法应为p=&n;选项C的正确写法应为scanf("%d",p);选项D的正确写法应为 printf("%d\n",*p)。
转载请注明原文地址:https://kaotiyun.com/show/XhCp777K
0

随机试题
最新回复(0)