#include #include #include using namespace std; int main(int argc, char * argv[], char * envp[]) { int i; cout << "Program " << argv[0] << " is being run " << endl; cout << "My PID is " << getpid() << endl; cout << endl; cout << "There are " << argc-1 << " command line arguments." << endl; if (argc > 1) { cout << " They are: " << endl; } for(i=1;i