1/11/00
COM1100 Winter2000 Yuhong Yin Northeastern University
12
C++ Identifiers -- 1
•Identifier give names to variables and functions.
•Identifier can be made up of any combination of letters, digits, or underscores(_).
•
qThe first character of the name must be a letter or underscores(_).
q Identifier beginning with underscore normally reserved for internal compiler use and for declaring system variable. So it is not recommended.
•
•