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