Loading...
C++

Identifiers

A C++ identifier is a name used to identify a variable, function, class, module, or any other user-defined item. An identifier starts with the letters A to Z orĀ  a to z or an underscore (_) followed by zero or more letters, underscore and digits (0 to 9). C++ does not allow punctuation characters such as @, $ and % within identifiers. C++ is a case-sensitive programming language.

Leave a Reply

Your email address will not be published. Required fields are marked *