找考题网-背景图
单项选择题

A.2,1,1 B.2,1,2C.2,2,2 D.程序有错误下面程序的输出结果是( )。 #include <……

下面程序的输出结果是( )。
#include <stdio.h>
main()
int a=1,*p,**pp;
pp=&p;
p=&a;
a++:
printf("%d,%d,%d\n", a,*p,**pp);


A.2,1,1
B.2,1,2
C.2,2,2
D.程序有错误
热门试题