Home » C Programming » Operators » Question
  1. Which among the following statement is right?
    1. The order Depends on the compiler
    2. sizeof(struct stemp*) > sizeof(union utemp*) > sizeof(char *)
    3. sizeof(struct stemp*) < sizeof(union utemp*) < sizeof(char *)
    4. sizeof(struct stemp*) = sizeof(union utemp*) = sizeof(char *)
    5. None of these
Correct Option: D

sizeof(struct stemp*) = sizeof(union utemp*) = sizeof(char *)



Your comments will be displayed only after manual approval.