Home » C Programming » Structures, Unions, Enums

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

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!