First page Back Continue Last page Graphics
Arguments to Main
Command line arguments.
int main(int argc, char** argv).
argc is an integer for the number of arguments in the command line.
argv is an array of strings where each string is a space separated argument.
Example in book skips the command by starting the output at 1 instead of 0.