fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. printf("hello my name is richard\n");
  6. printf("today is thursday\n");
  7. printf("today i worked 8 hours\n");
  8.  
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
hello my name is richard
today is thursday
today i worked 8 hours