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