The outcome of the printf statement in the following C progr…
The outcome of the printf statement in the following C program is: #include union test { int x, y; }; int main() { union test t; t.x = 2; t.y = 10; printf(“x = %d, y = %d\n”, t.x, t.y); return 0; }