Advertisement
mario_mos

new

Jul 26th, 2023 (edited)
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <stdlib.h>
  4. #include <time.h>
  5. #include <string.h>
  6.  
  7.  
  8. union{
  9. int a;
  10.  
  11. struct{
  12. unsigned b : 8;
  13. unsigned c : 1;
  14. };
  15. }x;
  16.  
  17.  
  18.  
  19.  
  20. // union avec int car double dans une union
  21.  
  22. int main()
  23. {
  24.  
  25. return 0;
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement