fork download
  1. #include <stdio.h>
  2.  
  3. void say_hi() {
  4. printf("Hi\n");
  5. }
  6.  
  7. int main() {
  8. say_hi();
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Hi