Search
 
SCRIPT & CODE EXAMPLE
 

C

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

#include <stdio.h>

int main()
{
  char Ch;

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

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

PREVIOUS NEXT
Code Example
C :: how to return array of char in c 
C :: How to copy one string into another in C 
C :: KneesDev 
C :: char ASCII in c 
C :: ecrire programme en C une fonction remplir tableau et un fonction inverser 
C :: absolute value of intel intrinsic 
C :: leggere stringhe con spazio in mezzo c 
C :: how to insert elements in and array and print it in c 
C :: fahrenheit to celcius 
C :: getline() in c 
C :: c pause for 1 second 
C :: redis service 
C :: integer in c 
C :: find sum of all odd numbers from 1 to n using for loop 
C :: what is the last character of a string in c 
C :: how to take input in c 
C :: yt derived field 
C :: Number 10 
C :: Highest integer among the four inputs in c 
C :: c fibonacci series recursion 
C :: grep C hello world 
C :: diamond dataset in r 
C :: VLOOKUP CHECK #N/A 
C :: c math.h sqrt 
C :: suma de digitos 
C :: Array in element from lowest 
C :: sue murry 
C :: String insertion into another string 
C :: listas enlazadas/ linked lists 
C :: Program optimization 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =