Advertisement
fteussh

cout_argv

Oct 20th, 2015
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main (int argc, char **argv) {
  6.  
  7.   int i = 0;
  8.  
  9.   for (i = 0; i <= argc; i++) {
  10.    cout << argv << endl;
  11.   }
  12.  
  13.   return 0;
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement