Horje
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
#include <stdio.h>

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

  if (Ch >= 97 && Ch <= 122)
   {  
     printf ( "\nEntered character is lowercase alphabet") ;
   }
  else
   {
     printf("\nEntered character is Not lowercase alphabet");
   }  
}




C

Related
pointers c Code Example pointers c Code Example
c read binary file Code Example c read binary file Code Example
Wait until an animation finishes - Selenium, Java Code Example Wait until an animation finishes - Selenium, Java Code Example
C first digit of integer Code Example C first digit of integer Code Example
allocating memory for 1Mb text file in C Code Example allocating memory for 1Mb text file in C Code Example

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