Skip to content

Instantly share code, notes, and snippets.

@gpetuhov
Created March 17, 2017 09:03
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 gpetuhov/13d1f46029fcd5381601bc713c82ea78 to your computer and use it in GitHub Desktop.
Save gpetuhov/13d1f46029fcd5381601bc713c82ea78 to your computer and use it in GitHub Desktop.
C++ Get symbol from ASCII code
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