Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <conio.h>
  3. #include <iostream>
  4. #include <cstdlib>
  5. #include <ctime>
  6. #include <cmath>
  7. #include <string>
  8.  
  9. int main(int argc, char *argv[])
  10. {
  11.     std::cout << argc << std::endl;
  12.     for (int i = 0; i < argc; i++)
  13.         std::cout << argv[i] << std::endl;
  14.  
  15.     system("PAUSE");
  16.  
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement