fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(int argc, char*argv[]) {
  5. for(int i = 0; i < argc; ++i) cout << argv[i] << endl;
  6. }
Success #stdin #stdout 0.01s 5460KB
stdin
Standard input is empty
stdout
./prog