fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct
  4. {
  5. int v;
  6. } test_struct;
  7.  
  8. int main()
  9. {
  10. test_struct* t;
  11. char* message;
  12.  
  13. message = "Hello World";
  14.  
  15. printf("%s\n", message);
  16.  
  17. t->v = 404;
  18.  
  19. printf("%d\n", t->v);
  20.  
  21. fflush(stdout);
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0s 5652KB
stdin
Standard input is empty
stdout
Hello World
404