Command Line Arguments
- The command line arguments are stored in a list called
argv
. - The name of the command IS NOT the first element of the list...
- ... instead it is stored in the variable argv0.
- The number of elements is stored in argc.