/* a program to print arguments from command line */ /* run this program at the command prompt */ #include /*or int main(int argc, *argv[ ])*/ int main(int argc, char **argv) { int iCounter; // print the number of arguments printf("argc = %d\n\n", argc); // print all the argument vectors for (iCounter=0; iCounter