C++ Program to Find ASCII Value of a Character 

Problem Description
The program takes a character and prints its ASCII value. ASCII stands for American Standard Code for Information Interchange which is a numerical representation of characters in computers ranging from 0 to 127.
Problem Solution
1. A character is entered.
2. The equivalent ASCII value of the character is printed.
3. Exit.
C++ Program/Source code

Here is the source code of C++ Program to Display the AS
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#include <iostream>
using namespace std;
int main()
{
 char c;
 cout << "Enter a character: ";
 cin >> c;
 cout << "ASCII Value of " << c << " is " << int(c);
 return 0;
}

Post a Comment

 
Top