char are the most basic of the two.
     man ascii (On line version)
        68 97 110 represent?
        Hello in ASCII?
         char.
    const char MIDDLE_INITIAL {'M'};
        char firstInitial = 'D'; 
         cout << '\t' << "is the tab" << endl;
    cin
    cin is the standard input stream.
          >>  are the stream extraction operators.
         
char aLetter;
cin >> aLetter;
         
         aLetter
         cin.get(aLetter)