207 views
0 votes
0 votes
How does the array related expression in printf works

#include <stdio.h>

int main(void) {
	// your code goes here
	int a[3][4] = {
	    1,2,3,4,5,6,7,8,9,10,11,12
	};
	
	printf("%u",*(*(a+0)+1));
	
	return 0;
}

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
CJ147 asked Oct 13, 2018
301 views
How does the following expression evaluate to if suppose n=2n=2; a[++n]=n++;
0 votes
0 votes
0 answers
2
CJ147 asked Oct 13, 2018
225 views
How does the following expression evaluate to if suppose n=2a[++n]=n++;
0 votes
0 votes
1 answer
3
LavTheRawkstar asked Nov 24, 2016
1,108 views
In SDT what is the role of array reference in the Arithmetic Expression please explain
1 votes
1 votes
1 answer
4
Mrityudoot asked Feb 2
246 views
In what cases does an uninitialized array have values = 0 and for which cases does it have values = garbage values. How to differentiate?