The Function Header Comment
/**********************************************
** prints out “Have a Nice Day”
** the number of times specified by the parameter ‘counter’
*************************************************/
void PrintMessage (int counter)
for (i = 0; i < counter; i++)
printf (“Have a nice day\n\n”);