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

None of these



Your comments will be displayed only after manual approval.