CS 206 – C2 – Lexical Elements, Operators and the C System

String – a one dimensional array of type char. End-of-String Sentinel \0 (Actually hex 00) (Also called delimiter.) String terminated by null character or end-of-string sentinel \0. Mandatory. Example: String ‘abc’ occupies four characters: a, b, c and \0. String length is three, but the memory size necessary to store the string is four. ................
................