fork download
  1. enum TheEnum
  2.  
  3. {
  4.  
  5. FIRST,
  6.  
  7. SECOND
  8.  
  9. };
  10.  
  11.  
  12.  
  13. struct TheStruct
  14.  
  15. {
  16.  
  17. int a;
  18.  
  19. int b;
  20.  
  21. TheEnum z;
  22.  
  23. };
  24.  
  25.  
  26.  
  27. int main()
  28.  
  29. {
  30.  
  31. TheStruct o = { 0 };
  32.  
  33. return 0;
  34.  
  35. }
  36.  
  37.  
Success #stdin #stdout 0.02s 2676KB
stdin
Standard input is empty
stdout
Standard output is empty