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>
- typedef struct {
- char a[16] ;/* 16 octets */
- }align; /* 16 octets */
- //<GillesM> non ca ne marche pas d'ajouter ainsi car il faut multiplier comme pour les dizaine
- //fais juste des tableaux de 1 de 2 de 4 de 8 et recopie les données
- int main()
- {
- align a;
- char b =a.a[0];
- char c[2];
- for (int i = 1 ; i < 3 ; i++) c[i]= a.a[i];
- char d[4];
- for (int i = 4 ; i < 9 ; i++) d[i]= a.a[4];
- char e[8];
- for (int i = 9 ; i < 16 ; i++) e[i]= a.a[8];
- //for (int i = 1 ; i < 9 ; i++) d = d + a.a[i];
- printf("b %d c=%d d=%d e: %d\n",sizeof(b),sizeof(c),sizeof(d),sizeof(e));
- //printf("no align : %d \n align : %d\n",sizeof(align));
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement