Mental Model
A string is a sequence of characters stored one after another in memory, ending with a special marker to show where it stops.
Analogy: Think of a string like a train of connected boxes, each holding one letter, with a special box at the end that says 'this is the last one'.
S -> [H] -> [E] -> [L] -> [L] -> [O] -> [\0] ↑start pointer
