C | Estructura y Unión | Pregunta 7
union test { int x; char arr[8]; int y; }; int main() { printf(«%d», sizeof(union test)); return 0; } Prediga la salida del programa anterior. Suponga que el tamaño de un entero es de 4 bytes y el tamaño de un carácter es de 1 byte. Suponga también que no se necesita alineación. (A) … Continue reading «C | Estructura y Unión | Pregunta 7»