in Programming in C
1,290 views
0 votes
0 votes
Main(){

Int a[3][4]={(1,2,3,4),(5,6,7,8),(9,10,11,12)}

Print("\n%u%u%u",a[0]+1,*(a[0]+1),*(*(a+0)+1)));

}

What will be the output if base address is 10.
in Programming in C
by
1.3k views

2 Answers

3 votes
3 votes
Best answer
  • a+1 ---> skeeping one row

  • *a+1 ----> skeeping one element.

selected by

1 comment

but "default" size of integer is 4 Bytes. I know the question ambiguous regarding size of int .
0
0
0 votes
0 votes
14 2 2 take in 4 byte all answer

Related questions