Horje
C Program to Check Whether Character is Lowercase or Not using islower function Code Example
C Program to Check Whether Character is Lowercase or Not using islower function
#include <stdio.h>
#include <ctype.h>

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

  if ( islower(Ch) )
   {  
     printf ("\n Entered character is lowercase alphabet");
   }
  else
   {
     printf("\n Entered character is Not lowercase alphabet");
   }  
}




C

Related
check if string is number c Code Example check if string is number c Code Example
how to zoom in terminal Code Example how to zoom in terminal Code Example
fibonacchi series in c Code Example fibonacchi series in c Code Example
sieve of eratosthenes c Code Example sieve of eratosthenes c Code Example
C program to check whether character is lowercase or not using ASCII values Code Example C program to check whether character is lowercase or not using ASCII values Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8