My Project
|
Driver to test functions of util.c (do not modify) More...
Functions | |
int | main (int argc, char *argv[]) |
This is a driver program to test the functions of util.c The program accepts two command line parameters and executes one of the functions of util.c. To understand the usage, type the testUtil
. with no parameters. This will give a brief description of each command and its parameter.
int main | ( | int | argc, |
char * | argv[] | ||
) |
Entry point of the program
argc | count of arguments, will always be at least 1 |
argv | array of parameters to program argv[0] is the name of the program, so additional parameters will begin at index 1. |