Skip to content

Instantly share code, notes, and snippets.

@michaels123
Created September 21, 2018 13:26
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 michaels123/665ea9157e739fb9f2c6535b6deb04b3 to your computer and use it in GitHub Desktop.
Save michaels123/665ea9157e739fb9f2c6535b6deb04b3 to your computer and use it in GitHub Desktop.
#include <iostream>
int main ()
{
char a = 5;
char b = '5';
std::cout << "Variable a: " << a << std::endl;
std::cout << "Variable b: " << b << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment