The command line arguments to the C main function can be read by accessing the parameters of main, if main has the following signature:
int main ( int argc, char **argv );
What is the contents of element argv[0]?