fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. void verbin();
  5.  
  6. int main() {
  7. verbin();
  8. return 0;
  9. }
  10. void verbin()
  11. { printf("\nOLA!");
  12. system("pause");
  13. }
  14.  
Success #stdin #stdout #stderr 0s 9432KB
stdin
Standard input is empty
stdout
OLA!
stderr
sh: 1: pause: not found