Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- union valor_numerico_t {
- int entero;
- double flotante;
- };
- void foo(void)
- {
- valor_numerico_t valor;
- // Se puede acceder a su valor como entero
- valor.entero = 1;
- // O como double
- valor.flotante = 3.14;
- }
Advertisement
Add Comment
Please, Sign In to add comment