/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
int a[2][2] = {{6, 2}, {3, 4}};
int (**p)[2];
p=a;
for(int i = 0; i < 4; i++) {
printf("%p\n", (*p + i));
printf("%d\n", *(*p + i));
}
return 0;
}