问题 更新时间2023/4/3 12:59:00 下列程序的输出结果是()#includevoid 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;} 答案 登录 注册 答案 B 出自:其他 >> 长沙理工大学-面对对象程序设计C++