1/11/00
COM1100 Winter2000 Yuhong Yin Northeastern University
14
C++ Identifiers -- 3
qCan not be one of the keywords
n A keyword is a word that is set aside by the C++ language for a special purpose and can only be used in a specified manner.
nSome examples:
ndo if case double return
nelse int short char long
nunsigned sizeof const float
nvoid continue for
nswitch while
nAll keywords in C++ are lowercase.
n
n