Skip to content

Strings: char arrays and the null terminator

Handout

Text is an array of chars

  • C has no separate string type. A string is just an array of char.
  • char word[] = "hi"; actually stores 'h', 'i', and a hidden '\0' at the end.
  • You can read one character at a time with an index, exactly like any array.

Handout

Log in or create account

IGCSE & A-Level