Home » C Programming » Structures, Unions, Enums

Point out the error in the program? #include<stdio.h> int main() { union a { int i; char ch[2]; }; union a z1 = {512}; union a z2 = {0, 2}; return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!