@ 2x3i5x
Just for the record, when you declare "grade" as a char type, does that mean entering "A" is really the ascii equivalent "65", and is incremented to "66" (B), when
grade = grade + 1 ? Is that how this is working ?
From what I understand, it's the
cin object that converts character constants such as A to it's equivalent numeric value which is stored into ram, and when outputted, it's the
cout object converts that numeric constant in ram back to the ascii equivalent.. hehe I think I got this..
