SyntaxFix
Write A Post
Hire A Developer
Questions
You messed up the second part of your if condition. That should be a <= 90.
if
a <= 90
Also, FYI, there is a C library function tolower that does this already:
tolower
#include <ctype.h> #include <stdio.h> int main() { putchar(tolower('A')); }