Q. Determine Output
Code:void main()
{
char far *farther, *farthest;
printf("%d..%d", sizeof(farther), sizeof(farthest));
}
β
Correct Answer: (A)
4..2
Explanation: The second pointer is of char type and is not a far pointer.