get ascii value of string in C++ code example

Example 1: c++ get ascii value of char

#include
using namespace std;
int main ()
{
    char c;
    cout << "Enter a character : ";
    cin >> c;
    cout << "ASCII value of " << c <<" is :  " << (int)c;
    return 0;
}

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

#include
#include
void main()
{
  char a;
  clrscr();
  cout<<"\nEnter any key: ";
  cin>>a;
  cout<<"ASCII value of "<

Example 3: get ascii value of string in C++

int main()
{
 char *s="hello";
 while(*s!='\0')
  {
  printf("%c --> %d\n",*s,*s);
  s++;
  }
 return 0;
}

Tags:

Misc Example