fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int A[2][2];
  6. A[0][0] = 1;
  7. A[0][1] = 2;
  8. A[1][0] = 3;
  9. A[1][1] = 4;
  10.  
  11. cout << A << " " << *A << " " << **A;
  12. return 0;
  13. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
0x7fff82be8380 0x7fff82be8380 1