Why the answer is not 3? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 2

Why the answer is not 3?

#include <stdio.h> union data{ int one; int two; }; int main(){ union data t; t.one=3; t.two=5; printf("%d",t.one); return 0; }

6th Jan 2019, 7:08 AM
Abhyoday Singh
Abhyoday Singh - avatar
0 Respuestas