Alphabet

C++ programming code to check whether the character is Alphabet or not

C++ programming code to check whether the character is Alphabet or not

In this post, we will discuss the concept of C++ programming code to check whether the character is Alphabet or not

Here, we are going to learn how to find whether the given character is Alphabet or not in C++ programming language

Alphabet or not

 

What is ASCII

In the C++ programming language, all the character variables hold an ASCII value for computer usage.ASCII value is represented by integer values between 0 to 127.
The ASCII value of lowercase Alphabets are from 97 to 122 and The ASCII value of uppercase Alphabets are from 65 to 90

 

C++ code to check the character is Alphabet or not using if-else

This concept is done  using three ways

  • using if-else statements
  • Using ternary operator
  • Using ASCII value

 

C++ code to check the character is Alphabet or not using if-else

The program allows the user to enter a character thereafter it will  check and display the result of the given character whether it is an alphabet or non-alphabet using the if-else statements in C++ programming language

Program 1

#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    char ch;
//Asking the user to enter the character
    cout<<"Enter a caracter as you wish\n";
    //Storing the entered character in variable ch
   cin>>ch;
    if((ch>='A' && ch<='Z')||(ch>='a' && ch<='z')){
cout<<ch<<" is an Alphabet: ";
// If the character  is an alphabet, it is displayed
}
else
{
cout<<ch<<" is not an Alphabet: ";
}// If the character  is not an alphabet, it is displayed
getch();
    return 0;
}

When the above code is executed it produces the following result

Case 1

Enter a character as you wish
X
X is an Alphabet

 

Case 2

Enter a character as you wish
d
d is an Alphabet

 

Case 3

Enter a character as you wish
&
& is not an Alphabet

 

Approach

  • In the program, the user is asked to enter a character and entered character is stored in character variable ch
  • The program evaluates whether the entered character is an Alphabet or not, using if statements
  • If the given character is an Alphabet The program displays the output “it is an Alphabet” and if the given character is not an Alphabet it will display”it is not an Alphabet”

 

C++ code to check the character is Alphabet or not using ternary operator

The program allows the user to enter a character thereafter it will  check and display the result of the given character whether it is an alphabet or non-alphabet using the Ternary operator in C++ language

Program 2

#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
    char ch;
    //Ask input the character
    cout<<"Enter the character\n";
    //Get the input and store the variable ch
    cin>>ch;

    (ch>='A' && ch<='Z')||(ch>='a' && ch<='z')

? cout<<"It is an Alphabet"
: cout<<"It is not an Alphabet";
getch();
    return 0;
}

 

 

When the above code is executed it produces the following result

Case 1

Enter the character
B
It is an Alphabet

 

Case 2

Enter the character
g
It is an Alphabet

 

Case 3

Enter the character
%
It is not an Alphabet

 

Approach

  • In the program, the user is asked to enter a character and entered character is stored in character variable ch
  • The program evaluates whether the entered character is an Alphabet or not, using ternary operator
  • If the given character is an Alphabet The program displays the output “it is an Alphabet” and if the given character is not an Alphabet it will display”it is not an Alphabet”

 

C++ code to check the character is Alphabet or not using Ascii value

The program allows the user to enter a character thereafter it will  check and display the result of the given character whether it is an alphabet or non-alphabet using ASCII value

Program 3

#include <iostream>
#include <conio.h>

using namespace std;

int main()
{
    char ch;
    cout<<"Enter any character\n";
    cin>>ch;

    if((ch>=97 && ch<=122)||(ch>=65 && ch<=90)){
cout<<ch<<" is an Alphabet";
}
else
{
cout<<ch<<" is not an Alphabet";
}
getch();
    return 0;
}

When the above code is executed it produces the following result

Case 1

Enter any character
M
M is an Alphabet

 

Case 2

Enter any character
t
t is an Alphabet

 

Case 3

Enter any character
#
# is not an Alphabet

 

Approach

  • In the program, the user is asked to enter a character and entered character is stored in character variable ch
  • The program evaluates whether the entered character is an Alphabet or not, using ASCII value
  • If the given character is an Alphabet The program displays the output “it is an Alphabet” and if the given character is not an Alphabet it will display”it is not an Alphabet”

The Alphabet has ASCII values between 65 to 90(capital letters) and 97 to 122 (small letters)

 

Suggested for you

The operator in C++ language

Data type in C++ language

Variable in C++ language

If-else statements in C++ Language

 

Similar post

C code to check whether the character is Alphabet or not

Java code to check whether the character is Alphabet or not

Python code to check whether the character is Alphabet or not

 

C code to check whether the Alphabet is vowel or consonant

C++ code to check whether the Alphabet is vowel or consonant

Python  code to check whether the Alphabet is vowel or consonant

Java  code to check whether the Alphabet is vowel or consonant

 

 

 

C programming code to check whether the character is Alphabet or not
Java programming code to check whether the character is Alphabet or not
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

2 months ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

2 months ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

10 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago