fork download
  1. #include <stdio.h>
  2.  
  3. int main(int argc, char* argv[])
  4. {
  5. for (int i = 0; i < argc; ++i) {
  6. printf("%s", argv[i]);
  7. }
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 9424KB
stdin
d ds ds
stdout
./prog