fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a[2][2]={{1,2},{3,4}};
  5. printf("%d \t %d",*(*(a+1)+1),a[1][1]);
  6. return 0;
  7. }
Success #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
4 	 4