Interview Question 3553

Created by admin on Sat, 17/11/2012 - 12:30
Explanation: 
The second pointer is of char type and not a far pointer.
Question: 

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

Language: 
Answer: 

4..2