I have a conflict in this code
`int main(){
int arr[3][4]={1,2,3,4,
4,3,2,1,
7,8,9,0};
printf("%x %x %x \n",arr,arr+1,&arr+1);
return 0;}`
The output appears to me as follows: 9278fc40 9278fc50 9278fc70
what is the difference between arr+1 , &arr+1 : I didn't get the relation
Could anyone help please