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