C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
int main() {
int a[2][3]={2,3,4,5,6,7};
//try to print a[1][0]
//confuse with other forms
//what are there meaning and
//how they are working
printf("%d\n",(a+1));//pointer
printf("%d\n",(*a+1));//pointer
printf("%d\n",(*(a+1)));//pointer
//but below both prints int value
// HOW?????
printf("%d\n",(*(*a+1)));
printf("%d\n",(*(*(a+1))));
//is above syntax are of pointer of pointer🤔
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run