A short note to everyone who programs in C:

  • const X* = a pointer to a constant stuff
  • X* const = a pointer that the memory address can’t be changed
  • const X* const = both