C++ Variables and Constants
Identifiers An identifier is a name of a variable or function in C++. The same basic rules you had in Python exist in C++. Can’t be a reserved word/keyword Case sensitive (name, Name, and NAME are all different things) Can only be used in one context Must start with a letter May have letters, numbers,…