Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

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

#include <stdio.h>
#include <ctype.h>

int main()
{
  char Ch;
 
  printf("
 Please Enter any alphabet
");
  scanf("%c", &Ch);

  if ( islower(Ch) )
   {  
     printf ("
 Entered character is lowercase alphabet");
   }
  else
   {
     printf("
 Entered character is Not lowercase alphabet");
   }  
}
Source by www.tutorialgateway.org #
 
PREVIOUS NEXT
Tagged: #C #Program #Check #Whether #Character #Lowercase #Not #islower #function
ADD COMMENT
Topic
Name
2+1 =