Union in C Language - Quiz

  • A Will be large enough to hold the largest of the three types;
  • B Will be large enough to hold the smallest of the three types;
  • C Will be large enough to hold the all of the three types;
  • D None of the mentioned
  • A Compile time error
  • B sizeof(int) + sizeof(char)
  • C Depends on the compiler
  • D sizeof(char)
  • A union-name.member
  • B union-pointer->member
  • C both union-name.member & union-pointer->member
  • D none of the mentioned