Command Line Arguments
int main( int argc, char *argv[] )
{
. . .
argc is the number of arguments on the command line, including the program name
The array argv contains the actual arguments
Example:
if( argc == 3 )
printf( “file1:%s file2:%s\n”,
argv[1], argv[2] );