Ask Question
27 February, 08:36

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. 27 February, 08:50
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers