fork download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3.  
  4. struct name {
  5. char first[20];
  6. char last[20];
  7. };
  8.  
  9. int main()
  10. {
  11. printf("%d\n", (int) _Alignof(struct name));
  12. }
  13.  
  14.  
  15.  
Success #stdin #stdout 0s 5504KB
stdin
Standard input is empty
stdout
1