#include #include using namespace std; int main() { char c; c = '1'; c = 'a'; c = '\0'; c = '\n'; c = '\\'; c = '\''; c = '\"'; cout << "Hello,\n this is a \"quote\" inside of a string" << endl; c = 'a' + 5; // ASCII p. 859 cout << "c contains " << c << endl; return 0; }