fork download
  1. #include <stdio.h>
  2.  
  3. void test(void)
  4. {
  5. printf("We are here\n");
  6. }
  7.  
  8. void main()
  9. {
  10. char buf[18];
  11.  
  12. test();
  13. gets(buf);
  14. }
  15.  
Success #stdin #stdout 0s 2172KB
stdin
Standard input is empty
stdout
We are here