fork(6) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. void say_hello()
  6. {
  7. puts("Hello govnokod!");
  8. }
  9.  
  10. say_hello();
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
Hello govnokod!