Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 13, 2021 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/1683b5bbad8a3bf6471bd6b0fb5006b1 to your computer and use it in GitHub Desktop.
Save amankharwal/1683b5bbad8a3bf6471bd6b0fb5006b1 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main(){
char ch1;
cout<<"Enter any number : ";
cin>>ch1;
cout<<"The ASCII Character of" <<ch1<<" is "<<int(ch1)<<endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment