fork download
  1. #include <stdio.h>
  2.  
  3. int main(int argc, char*argv[]) {
  4. while(argv != NULL)
  5. printf("%s \n",*(argv++));
  6.  
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4432KB
stdin
Standard input is empty
stdout
Standard output is empty