Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save UponTheSky/18b896511b8a546f92eb9a7d5bef557a to your computer and use it in GitHub Desktop.
Save UponTheSky/18b896511b8a546f92eb9a7d5bef557a to your computer and use it in GitHub Desktop.
C++ const cheatsheet

Based On MIT 6.096 lecture node 5

  1. const int* var: var is a pointer to a const int
  2. int* const var: var is a const, which is a pointer to int
  3. const int* const var: var is a const, which is a pointer to a const int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment