The main() Function
A function parameter lists the arguments which the function takes from its caller.
For example:
printf ("Enter a length in inches: ");
scanf ("%f", &inches);
"Enter a length in inches: " is an argument to the printf() function. "%f" and &inches are arguments to the scanf() function.
A void parameter indicates no argument.