void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));}
void main()
{
char far *farther, *farthest;
printf("%d..%d", sizeof(farther), sizeof(farthest));
}
4..2
2..2
4..4
2..4
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option A
Explanation :
The second pointer is of char type and is not a far pointer.
Be The First To Comment