#include int main(int argc, char *argv[]) { int i; cout << "\n\nThere are " << argc << " arguments given...\n\n"; cout << "The arguments given to the program is:\n\n"; for (i = 0; i < argc; i = i+1 ) cout << argv[i] << "\n"; return(198); }