fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. void AtExit(void) {
  5. printf("owarima-su!\n");
  6. }
  7.  
  8. int main() {
  9. atexit(AtExit);
  10.  
  11. printf("hogeratta!\n");
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 4312KB
stdin
Standard input is empty
stdout
hogeratta!
owarima-su!