fork download
  1. // stub.c
  2. // A minimal C program that does nothing and exits successfully.
  3.  
  4. int main() {
  5. // The main function is the entry point of the program.
  6. // It takes no arguments here (can also be int main(void)).
  7.  
  8. // Return 0 to indicate successful execution to the operating system.
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty