CJCoding With Joseph

Function: To Uppercase

Write a function toUpper(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 with printf("%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.