C - Data Types - Discussion

You Are Here :: Home > C > Data Types - Discussion

 



Q.

void main()

{
char far *farther,*farthest;
printf("%d..%d",sizeof(farther),sizeof(farthest));
}

A. 2..2 B. 2..4
C. 4..2 D. 4..4

Answer: Option C
Explaination:

the second pointer is of char type and not a far pointer.



Discussion

Your Comments Goes here...
NameDiscussion