Checking Lowercase In C Programming on June 18, 2018 Get link Facebook X Pinterest Email Other Apps #include <stdio.h> int main() { char ch; printf("\nEnter the character : "); scanf("%c", &ch); ch>=97&&ch<=122? printf("\n The entered character is lower case character"): printf("\n The entered character is not a lower case character"); return 0; } Comments
Comments
Post a Comment