]> git.llucax.com Git - z.facultad/75.31/presentacion.git/blob - ejemplos/align.d
Se completa a un 50% aprox, agregando más ejemplos.
[z.facultad/75.31/presentacion.git] / ejemplos / align.d
1
2 align (1) byte a, b, c, d;
3 align (4) byte e, f, g, h;
4
5 struct S
6 {
7         byte a;
8         byte[3] b;
9         byte[3] c;
10         byte d;
11 }
12
13 align (1)
14 struct SA
15 {
16         byte a;
17         byte[3] b;
18         byte[3] c;
19         byte d;
20 }
21
22 S s;
23 SA sa;
24 bit z;
25
26 void main() {s.a=1;}
27