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. int a, b, c;
  9. a = 4;
  10. b = 5;
  11. c = 7;
  12. printf("richard ate %d hot dogs today\n, a");
  13.  
  14.  
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
hello my name is richard
today is thursday
today i worked 8 hours
richard ate -3759900 hot dogs today
, a