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;
}
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;
}
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();
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us