Answers for "how to check if string is lower case letter"

0

Program to Check Whether Character is Lowercase or Not without using islower function

#include <stdio.h>

int main()
{
  char Ch;

  printf("n Please Enter any alphabetn");
  scanf("%c", &Ch);

  if (Ch >= 'a' && Ch <= 'z')
   {  
     printf ( "nEntered character is lowercase alphabet") ;
   }
  else
   {
     printf("nEntered character is Not lowercase alphabet");
   }  
}
Posted by: Guest on December-24-2021

Code answers related to "how to check if string is lower case letter"

Python Answers by Framework

Browse Popular Code Answers by Language