Search
 
SCRIPT & CODE EXAMPLE
 

C

c program for determining a character is alphabet or not

You can also check the alphabet using the ASCII values of characters like this: if((ch >= 97 && ch <= 122) || (ch >= 65 && ch <= 90)) printf("The entered character %c is an Alphabet",ch); else printf("The entered character %c is not an Alphabet",ch); The ASCII value of 'a' is 97, 'z' is 122, 'A' is 65 and 'Z' is 90.
Comment

PREVIOUS NEXT
Code Example
C :: Recommended compiler and linker flags for GCC 
C :: c triangle check if triangle is 90 degrees 
C :: unox reclame harmonica tabs 
C :: install zoom on ubuntu 
Dart :: flutter get width of screen 
Dart :: dart regex for email 
Dart :: textfield border radius flutter 
Dart :: flutter get current date 
Dart :: flutter label alignment top 
Dart :: flutter rounded ElevatedButton 
Dart :: listtile remove padding flutter 
Dart :: order list dart 
Dart :: dart timestamp 
Dart :: constrainedbox flutter 
Dart :: dart create id 
Dart :: flutter scroll to bottom 
Dart :: not empty string check dart 
Dart :: flutter file size 
Dart :: type convertion string to double 
Dart :: dart square root 
Dart :: flutter column mainaxissize 
Dart :: flutter listtile disable 
Dart :: extend class flutter 
Dart :: dart date add day 
Dart :: ElevatedButton background flutter 
Dart :: flutter inner box shadow plugin 
Dart :: flutter make a container clickable 
Dart :: snackbar flutter 
Dart :: dart null aware operators 
Dart :: flutter create new map 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =