fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(int hello,char*world[])
  4. {
  5. printf("%d\n",hello);
  6. for(int i=0;i<hello;i++)
  7. printf("%s\n",world[i]);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 4412KB
stdin
Standard input is empty
stdout
1
./prog