Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
int main() { char l = 'a'; char u = toupper(l); printf("%c in uppercase is %c", l, u); return 0; }
a in uppercase is A