fork download
  1. #include <stdio.h>
  2. extern int hoge();
  3. int hoge()
  4. {
  5. puts("死ね");
  6. return 0;
  7. }
  8. int main(int a, char **b)
  9. {
  10. hoge();
  11. return 0;
  12. }
Success #stdin #stdout 0s 1788KB
stdin
Standard input is empty
stdout
死ね