closed by
392 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
closed by

Related questions

0 votes
0 votes
1 answer
1
2 votes
2 votes
3 answers
2
Gurdeep Saini asked Jan 14, 2019
1,787 views
#include <stdio.h>int arr[] = { 10, 20, 30, 40, 50 };static int count ;inc() {return ++count;}int main(){arr[count++]=inc();printf("%d ", arr[count]);printf("%d ", arr[0]...
1 votes
1 votes
2 answers
3
rahul sharma 5 asked Dec 14, 2016
479 views
For n=2 the P is coming as 3,but none of the option is satisfying?