Ask Question
18 May, 10:00

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

+2
Answers (1)
  1. 18 May, 10:59
    0
    Here you go:

    void printgrade (char grade)

    {

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

    }
Know the Answer?
Not Sure About the Answer?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers