974 views
0 votes
0 votes
#include<stdio.h>

int main()
{
    char huge *near *far *ptr1;
    char near *far *huge *ptr2;
    char far *huge *near *ptr3;
    printf("%d, %d, %d\n", sizeof(**ptr1), sizeof(ptr2), sizeof(*ptr3));
    return 0;
}

 

  A.
4, 4, 4
  B.
2, 2, 2
  C.
2, 8, 4
  D.
2, 4, 8

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
0 votes
0 votes
0 answers
2
`JEET asked Nov 28, 2018
319 views
#include<stdio.h #include<stdlib.h int main(int argc, char argv) { int i, j=0; for(i=0; i<argc; i++) j = j+atoi(argv[i]); printf("%d\n", j); return 0; }
0 votes
0 votes
1 answer
3
0 votes
0 votes
1 answer
4