Horje
Program to Check Whether Character is Lowercase or Not without using islower function Code Example
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 alphabet\n");
  scanf("%c", &Ch);

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




C

Related
arduino server read Code Example arduino server read Code Example
what is O(N^2)  in bubble sort method Code Example what is O(N^2) in bubble sort method Code Example
Trasmettere variabile float attraverso seriale Code Example Trasmettere variabile float attraverso seriale Code Example
localStorage.setItem multpile arra Code Example localStorage.setItem multpile arra Code Example
c define array size Code Example c define array size Code Example

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