Vidyalelo
C Programming · Q18

C Miscellaneous

Programming · C Programming · question 18

Q18

Determine Output: void main() char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));

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

Answer: Option A

Solution

Answer: Option A
Solution:

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