Posts

Showing posts with the label ASCII code checker

ASCII code checker | ASCII code finder

# include <iostream> using namespace std; void main(){ char character; cout<<"Please enter the Character: "; cin>>character; int code=character; // for ASCII codes cout<<"The ASCII code of this character is: "<<code<<endl; }