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
0
The output for the program is 20.
Similar questions