Can anybody explain me why the following part of code produces the result 21? Here is the code:
int a[2][4]={3,6,9,12,15,18,21,24};
cout << 2[1[a]];
Thanks in advance!
Can anybody explain me why the following part of code produces the result 21? Here is the code:
int a[2][4]={3,6,9,12,15,18,21,24};
cout << 2[1[a]];
Thanks in advance!