1/11/00
COM1100 Winter2000 Yuhong Yin Northeastern University
15
C++ Identifiers -- 4
qCan not consist of more than 31 characters
qCase-sensitive (upper and lower case letters are different)
qtest and TEST are two different identifiers for variable.
qint main() and int Main() are two different identifiers for function.
qC++ program can only be executed from function int main()
n