The Function Definition
Control was passed to the function by the function call, so the statements within the function body will be executed
printf (“A message for you:\n\n”);
printf (“Have a Nice Day\n”);
After the statements in the function have completed, control is passed back to the calling function... in this case main ( )