What is the output of the following program ?

			  		

Loading

โœช Choose the correct option.

What is the output of the following program ?


#include
int main() {
union {
int a;
int b;
int c;
} u,v;
u.a = 10;
u.b = 20;
printf("%d %d
",u.a,u.b);
return 0;
}

A. 20 20
B. 44844
C. 10 20
D. 44854