Programming Languages
Welcome to coding world
Write a C++ Program to 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.
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 .