fork(1) download
  1.  
  2.  
  3. struct B
  4. {
  5. align(8) char c;
  6. align(8) char d;
  7. }
  8.  
  9. struct C
  10. {
  11. align(1) char c;
  12. align(1) float d;
  13. }
  14.  
  15. void main()
  16. {
  17. import std.stdio;
  18.  
  19. writeln(B.sizeof);
  20. writeln(C.sizeof);
  21.  
  22. }
Success #stdin #stdout 0s 5536KB
stdin
Standard input is empty
stdout
16
5