Created
March 17, 2017 09:03
-
-
Save gpetuhov/13d1f46029fcd5381601bc713c82ea78 to your computer and use it in GitHub Desktop.
C++ Get symbol from ASCII code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int code = 0; | |
cout << "Enter ASCII code" << endl; | |
cin >> code; | |
cout << "Symbol for this code is: " << (char) code << endl; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment