What will be the output of the following C code?
#include<stdio.h>
int main()
{
typedef union a
{
int i;
char ch[2];
}hello;
hello u;
u.ch[0] = 3;
u.ch[1] = 2;
printf("%d, %d", u.ch[0], u.ch[1]);
return 0;
}
#include<stdio.h>
int main()
{
typedef union a
{
int i;
char ch[2];
}hello;
hello u;
u.ch[0] = 3;
u.ch[1] = 2;
printf("%d, %d", u.ch[0], u.ch[1]);
return 0;
}A. 2, 3
B. 3, 2
C. 32
D. error
Answer: Option B

Join The Discussion