Computer Science & C Programming


Encoding: Characters

Byte / OCTET = 8 bits (2^8 = 256 values)

0b10110010 = 0xB2 = 178

There is a standard to encode symbols: ASCII
(American Standard Code for Information Interchange)

E.g. 'Z' = 0x5A = 90

Exercices


9 - 15