C++/Development/Argv Argc — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
|
(нет различий)
|
Текущая версия на 10:23, 25 мая 2010
Outputs the program name including the path, command line arguments and the environment
#include <iostream>
using namespace std;
int main( int argc, char *argv[], char *env[])
{
cout << "Program: " << argv[0] << endl;
cout << "Command line arguments:" << endl;
int i;
for( i = 1; i < argc; ++i)
cout << argv[i] << endl;
cout << "Type <Return> to go on";
cin.get();
cout << "Environment strings:" << endl;
for( i = 0; env[i] != NULL; ++i)
cout << env[i] << endl;
return 0;
}