#include #include using namespace std; int main(int argc, char * argv[], [[maybe_unused]] char * envp[] ) { int i; cout << endl; cout << "There are " << argc << " command line arguments." << endl; cout << "They are: " << endl; for(i=0; i < argc; ++i) { cout << "\t" << i << setw(30) << argv[i] << endl; } cout << endl << endl; /* cout << "The enviornment is " << endl; i = 0; while (envp[i] != nullptr) { cout << i << " " << envp[i] << endl; ++i; } */ return 0; }