Write a C++ program which accepts a character and display its ASCII value.
Program Code:
#include <iostream>
using namespace std;
int main()
{
char character;
cout << "Enter a character to be displayed in ASCII value : ";
cin >> character;
cout << "ASCII Value of entered character is :" << int(character);
return 0;
}
The program code is tested on www.jdoodle.com
Output:
Enter a character to be displayed in ASCII value : a
ASCII Value of entered character is : 97
Thanks
Mukesh Rajput
Post A Comment:
0 comments: