fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(int argc, char** argv) {
  5. for (int i = 1; i < argc; i++) {
  6. puts(argv[i]);
  7. }
  8. return EXIT_SUCCESS;
  9. }
  10.  
Success #stdin #stdout 0s 5516KB
stdin
Standard input is empty
stdout
Standard output is empty