/* this function allows command line arguments. Compile and test with: a.out my command line arguments */ main(argc,argv) int argc; char *argv[]; { int i; printf("argc is %d\n",argc); for (i=0;i