Write a C++ Program to Display ASCII Value of a Character

By | 23.12.2016

Display ASCII Value of a Character


Write a C++ Program to Display ASCII Value of a Character. Here’s simple C++ Program to Find ASCII Value of a Character in C++ Programming Language.


A character variable holds ASCII value (an integer number between 0 and 127) rather than that character itself in C programming. That value is known as ASCII value.

For example, ASCII value of ‘A’ is 65.

What this means is that, if you assign ‘A’ to a character variable, 65 is stored in that variable rather than ‘A’ itself.


Here is source code of the C++ Program to Display ASCII Value of a Character. The C++ program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.


SOURCE CODE : :


/*  C++ Program to Display ASCII Value of a Character  */

#include <iostream>
using namespace std;

int main()
{
     char c;

     cout << "Enter any Character :: ";
     cin >> c;

     cout << "\nThe ASCII Value of Character [ "<< c << " ] is :: " << int(c)<<"\n";

     return 0;
}

Output : :


/*  C++ Program to Display ASCII Value of a Character  */

Enter any Character :: C

The ASCII Value of Character [ C ] is :: 67

Process returned 0

Above is the source code for C++ Program to Display ASCII Value of a Character which is successfully compiled and run on Windows System.The Output of the program is shown above .

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.


Thanks for reading the post….

4.1 23 votes
Article Rating
Category: Basic Programs C++ Programming Tags:

About Tunde A

My name is Tunde Ajetomobi, a Tech Enthusiast and Growth Hacker. I enjoy creating helpful content that solves problem across different topics. Codezclub is my way of helping young aspiring programmers and students to hone their skills and find solutions on fundamental programming languages.

Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments