in Programming in C closed by
380 views
0 votes
0 votes
closed as a duplicate of: Programming
#include<stdio.h>
int main()
{
char A[5][7][6];
char *p[5][7][6];
printf(“%d\t”,(unsigned)(A+1)-(unsigned)A);
printf(“%d”,(unsigned)(p+1)-(unsigned)p);
}

 

OPTIONS:

  1. 42         42
  2. 1             1
  3. 42       336
  4. 336       42
in Programming in C closed by
380 views

4 Comments

ans should be $3.$ $42$    $336????$
0
0
edited by

@arya_stark Yes, it is indeed.

Can you please explain the solution?

0
0

Here you get complete explanation. 

https://gateoverflow.in/196450/programming

0
0

@arya_stark thank you so much! :)

0
0

Related questions