#include #include using namespace std; //The expression 'A' in single quotes is another way of writing the number 65. int main() { char c {'A'}; //Actually holds the number 65 on storm. cout << c << "\n"; //Outputs the character A. char d {'B'}; //Actually holds the number 66 on storm. cout << d << "\n"; //Outputs the character B. char e {'\n'}; //Actually holds the number 10 on storm. cout << e; //Outputs the invisble newline character. char f {'\a'}; //Actually holds the number 7 on storm. cout << f; //Outputs the invisible alarm (beep) character. cout << "A char occupies " << sizeof (char) << " byte(s).\n\n"; return EXIT_SUCCESS; }