C++ Characters And Text

char datatype and textual data.

char data type

We store single character data, enclosed in single quotes. These occupy 1 byte storage in memory.

ASCII Table

  • ASCII value 48 — 0
  • ASCII value 65 – A
  • ASCII value 97 – a

The difference of ASCII values between lower case and upper case alphabets is 32.

casting from char to int