#include using namespace std; int main () { char c; cout << "Enter a character : "; cin >> c; cout << "ASCII value of " << c <<" is : " << (int)c; return 0; }
#include #include void main() { char a; clrscr(); cout<<"\nEnter any key: "; cin>>a; cout<<"ASCII value of "<
int main() { char *s="hello"; while(*s!='\0') { printf("%c --> %d\n",*s,*s); s++; } return 0; }