joxeankoret

Untitled

Aug 28th, 2023
1,098
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. union valor_numerico_t {
  2.   int entero;
  3.   double flotante;
  4. };
  5.  
  6. void foo(void)
  7. {
  8.   valor_numerico_t valor;
  9.   // Se puede acceder a su valor como entero
  10.   valor.entero = 1;
  11.   // O como double
  12.   valor.flotante = 3.14;
  13. }
  14.  
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment