-
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
-
- sizeof(P) is equal to sizeof(Q)
- sizeof(P) is greater than sizeof(Q)
- sizeof(P) is less than sizeof(Q)
- All of above
- None of these
Correct Option: E
None of these