Chapter 12: Problem 5
The __________ function returns the uppercase equivalent of its character argument.
Short Answer
Expert verified
Question: Explain a function that returns the uppercase equivalent of a character input.
Answer: The function, called to_uppercase, takes a character input and checks if it is a lowercase letter. If it is, it converts the character to its uppercase equivalent by subtracting 32 from its ASCII code and returns the uppercase character. If the input character isn't a lowercase letter, the function returns the original character. For example, using this function with 'c' as input would return 'C'.