// Ex224.cc // Sec. 2.2.4 / 2.2.5.of lecture // Example for difference between character and string constants #include #define HELLO "Hello World\n" main() { cout << HELLO; cout << "A" << " String " << sizeof("A") << endl; cout << 'A' << " Char " << sizeof('A') << endl; }