Home » C Programming » Operators » Question
  1. Which among the following is never possible in C when members in a structure are same as that in a union?
    //Let P be a structure
    //Let Q be a union
    1. sizeof(P) is less than to sizeof(Q)
    2. sizeof(P) is greater than sizeof(Q)
    3. sizeof(P) is equal to sizeof(Q)
    4. All of above
    5. None of these
Correct Option: A

sizeof(P) is less than to sizeof(Q)



Your comments will be displayed only after manual approval.