#include<conio.h>
using namespace std;
int main()
{
char ch;
cout<<"Please Enter a character and check its ASCII Value ";
cin>>ch;
cout<<"ASCII Value of "<<ch<<" is = "<<(int)ch;
getch();
}
Find Tons of C++ Programming examples, projects with code. Also find books solutions.
0 Questions:
Post a Comment