/* listargs.c * print the number of command line args, list the args, * then print a message to stderr */ #include main( int ac, char *av[] ) { int i; printf("Number of args: %d, Args are:\n", ac); for(i=0;i