0
union in c
can anyone make me understand what will be the output? union Data{ int one; int two; }; int main() { union Data t; t.one = 5; t.two = 3; printf("%d\n",t.one); return 0; }
1 Resposta
+ 1
You can always try this in code playground. And ask if there any thing that you can't understand