Answers for "how to get the ascii value of a character in cpp"

C++
10

c++ get ascii value of char

#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;
}
Posted by: Guest on June-24-2020
1

Enter a key and display it's ascii value in c++

#include<iostream.h>
#include<conio.h>
void main()
{
  char a;
  clrscr();
  cout<<"nEnter any key: ";
  cin>>a;
  cout<<"ASCII value of "<<a<<" is: "<<int(a);
  getch();
}
Posted by: Guest on November-07-2020

Code answers related to "how to get the ascii value of a character in cpp"

Browse Popular Code Answers by Language