Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.08 KB | None | 0 0
  1. typedef union {
  2.     int a;
  3.     char b;
  4. } union_def;
  5.  
  6. union_def def;
  7. def.a = 10;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement