fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void)
  5. {
  6. printf("See you tomorrow. \n");
  7. printf("Have a good night.");
  8. return 0;
  9. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
See you tomorrow. 
Have a good night.