Write the definition of a function printGrade , which has a char parameter and returns nothing. The function prints on a line by itself the message string Grade: followed by the char parameter (printed as a character ) to standard output . Don't forget to put a new line character at the end of your line.
Thus, if the value of the parameter is 'A', the function prints out Grade: A
this is what i have so far:
void printGrade(char){
cout << "Grade: " << endl;
}
I need to put something after Grade but I don't know what, please help. thanks