A

Admin • 833K Points
Coach

Q. Determine Output

Code:
void main()
{
char far *farther, *farthest;
printf("%d..%d", sizeof(farther), sizeof(farthest));
}
  • (A) 4..2
  • (B) 2..2
  • (C) 4..4
  • (D) 2..4
  • Correct Answer - Option(A)
  • Views: 19
  • Filed under category C Programming
  • Hashtags:

Explanation by: Admin

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

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.