2.3.Identifier name #

Identifier name is a rule of naming variable. The naming of a variable can be composed of letters, digits, and the underscore character. It must begin with either a letter or an underscore. Upper and lowercase letters are distinct because C++ is case-sensitive.

Suggest Edit