Which among the following is never possible in C when members in a structure are the same as that in a union?
//Let P be a structure//Let Q be a union

Which among the following is never possible in C when members in a structure are the same as that in a union?

//Let P be a structure//Let Q be a union
Correct Answer sizeof(P) is less than to sizeof(Q)

Related Questions

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