fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6. printf("I ate %d corndogs last night", 9);
  7.  
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
I ate 9 corndogs last night