C Program To Determine Whether A Character Entered By The User Is Lowercase Or Not


Program Code:

#include<stdio.h>
int main() 
{
   char ch; 
   printf("\nEnter The Character : ");
   scanf("%c", &ch);
   if (ch >= 97 && ch <= 122)
      printf("Character is Lowercase Letters");
   else
      printf("Character is Not Lowercase Letters"); 
   return (0);
}


To learn more about programming and coding visit our website. PDF study materials also available on our website.

Log on to: www.thecode11.com