โช 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;
}
#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;
}