using namespace std; #include int istrue(int v) { return v; } int main () { const int d1=2; const int d2=3; int i,j; int mat[d1][d2] = {{1,2,3},{4,5,6}}; cout << "mat: " << mat << endl; cout << "*mat: " << *mat << endl; cout << "mat[0]: " << mat[0] << endl; cout << "mat[1]: " << mat[1] << endl; for (i=0;i