C++ Program To Print ASCII Value Of All Characters In The String

This is a C++ Program to Display the ASCII Value of the Character Entered.

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 ASCII Value of the Character Entered. The program output is shown below.

  1. #include<iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5. char c;
  6. cout << "Enter a character : ";
  7. cin >> c;
  8. cout << "ASCII value of " << c <<" is : " << (int)c;
  9. return 0;
  10. }
Program Explanation

1. The user is asked to enter a character. 2. The ASCII value of the character which is the integer value is printed.

advertisement Runtime Test Cases Case 1 : Enter a character : M ASCII value of M is : 77 Case 2 : Enter a character : a ASCII value of a is : 97 Case 3 : Enter a character : S ASCII value of S is : 83

Sanfoundry Global Education & Learning Series – C++ Programs.

To practice all C++ programs, here is complete set of 1000+ C++ Programming examples.

🔥 Enroll for Free Data Structure Certification - February 2026

Tag » How To Get Ascii Value Of Char In C++