To get the char code in C++ you can use the following snippet.
Simply cast the Char to int.

Sample C++

cout << (int)'A' << endl;

One thought on “How to get the char code in C++”

Leave a Reply