#include int main() { char ch; // this declares a character variable ch = 'a'; // store the letter a into ch cout << "The character stored in ch is " << ch << endl; ch = 'm'; // now store the letter m into ch cout << "The character now stored in ch is "<< ch << endl; return 0; }