find ascii value by using code in c++ code example
Example 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();
}
Example 2: get ascii value of string in C++
int main()
{
char *s="hello";
while(*s!='\0')
{
printf("%c --> %d\n",*s,*s);
s++;
}
return 0;
}