Computer Science, asked by yashkaranradcli3675, 1 year ago

What will be the output of the below program, : #include int main(){union var{int a, b;};union var v;v.A=10;v.B=20; printf("%d\n", v.A);return 0;}?

Answers

Answered by deepakkumarpatro
0

The output for the program is 20.



Similar questions