13/12/2016

C++ Program To Check Character Is Uppercase, Lowercase Alphabet Or A Digit Or A Special Symbol

Problem:- C Program To Check Character Is Uppercase( Like A,B,C........Z) , Lowercase ( Like a,b,c.....z )  Alphabet Or A Digit ( Like 1,2,3,.......9 ) , Or A Special Symbol ( Like #,@,<,> ) .

To Solve this problem we will use ASCII Value if you have any problem with ASCII Value You Can Check C++ Program for Print ASCII Value Of Any Character.  if character is between 65 to 90 then You Entered UPPER CASE if it is 97 to 122 Then You Entered LOWER CASE if it is between 48 to 57 then it is a DIGIT And Rest Are SPECIAL SYMBOLS.

See Also :- C Program To Check Character Is Uppercase, Lowercase Alphabet Or A Digit Or A Special Symbol

Solution :-

#include<iostream>
using namespace std;
int main()
{
char a;
cout<<"Press Any Key : ";
cin>>a;

if(a>=65 && a<90)
{
cout<<"An Upper Case Letter\n\n";
}
else
{
  if(a>=97 && a<=122)
  {
  cout<<"A lower Case\n";
  }
  else
  {
  if(a>=48 && a<=57)
  {
  cout<<"A Digit\n";
  }
  else
  {
  cout<<"A Special Symbol\n";
  }
  }
}
}

See Also :- Java Program To Check Character Is Uppercase, Lowercase Alphabet Or A Digit Or A Special Symbol

Output:-


C++ Program To Check Character Is Uppercase, Lowercase Alphabet Or A Digit Or A Special Symbol

Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: