fork(34) download
  1. #include <stdio.h>
  2.  
  3. struct super_X {
  4. char name[20];
  5. } super_default = {"ugh"};
  6.  
  7. typedef struct super_X super;
  8.  
  9. int main(void) {
  10. super Doom3 = super_default;
  11.  
  12. printf(Doom3.name);
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 4444KB
stdin
Standard input is empty
stdout
ugh