有以下程序片段:int a[5]={10,20,30,40,50},*p=a;(*p)++;printf("%d,%d\n",a[0],p[0]); 执行后,输出结果为()。
A. 11,10
B. 10,11
C. 10,10
D. 11,11
有以下程序片段:int a[5]={10,20,30,40,50},*p=a;*p++;printf("%d,%d\n",a[0],p[0]); 执行后,输出结果为()。
A. 11,20
B. 10,20
C. 10,11
D. 11,11
有以下程序片段:int a[5]={10,20,30,40,50},*p=a;++p;printf("%d,%d\n",*a,*p); 执行后,输出结果为()。
A. 11,20
B. 10,20
C. 10,11
D. 11,11
有以下程序片段:int a[5]={10,20,30,40,50},*p=a;++p;printf("%d,%d\n",*(a+1),*p); 执行后,输出结果为()。
A. 20,20
B. 11,20
C. 11,11
D. 20,11