โ Back to Functions/Methods
Question 284
Function: To Uppercase
Function: To Uppercase
Write a functiontoUpper(char c)that converts a lowercase letter to uppercase by subtracting 32 from its character code. Call it with'g'and print the resulting character: G Print the character withprintf("%c", ...).
Expected Output:
G
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.