MCQOPTIONS
Which of the following statements correct about..
Which of the following statements correct about the below program?
#include<stdio.h> int main() { union a { int i; char ch[2]; }; union a u1 = {512}; union a u2 = {0, 2}; return 0; }