#include<iostream> using namespace std ; int mian() { int A[3][4] = {{3, 1, 8, 11}, {4, 12, 9, 10}, {7, 5, 2, 6}}; int **p = A; P[1][2] = 99; cout<<A[1][2] ; }
Standard input is empty
prog.cpp: In function 'int mian()':
prog.cpp:6:15: error: cannot convert 'int (*)[4]' to 'int**' in initialization
int **p = A;
^
prog.cpp:7:5: error: 'P' was not declared in this scope
P[1][2] = 99;
^
Standard output is empty