通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下列程序的输出结果是()。
#include<iostream.h> void main() { int n[][3]={10,20,30,40,50,60}; int (*p)[3]; p=n; cout<<p[0][0]<<","<<*(*p+0)+1<<","<<*(p[2])<<endl; }