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




Cpp

Related
how to pass arrays by reference c++ Code Example how to pass arrays by reference c++ Code Example
template function in class c++ Code Example template function in class c++ Code Example
C++ remove last element from array Code Example C++ remove last element from array Code Example
what is push() c++ Code Example what is push() c++ Code Example
array syntax in c++ Code Example array syntax in c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7