Ask Question
30 November, 06:51

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

+4
Answers (1)
  1. 30 November, 10:05
    0
    Here you go:

    void printgrade (char grade)

    {

    printf ("grade: %c/n", grade);

    }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write the definition of a function printgrade, which has a char parameter and returns nothing. the function prints on a line by itself the ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers