Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <math.h>
- #include <stdlib.h>
- #include <time.h>
- #include <string.h>
- struct{
- unsigned a : 8;
- unsigned b : 1;
- union{
- int a;
- char b;
- }u;
- };
- // union avec int car double dans une union
- int main()
- {
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement