Saturday, March 11, 2017

Intro to C++ Part 7

Identifiers

A C++ identifier must start with either a letter or the underscore symbol, and the remaining characters must all be letters, digits, or the underscore symbol. C++ identifiers are case sensitive and have no limit to their length. There is a special class of identifiers, called keywords or reserved words, which have a predefined meaning in C++ and cannot be used as names for variables or anything else.


The following keywords should not be used for anything other than their predefined purposes in
the C++ language.  
C++ Reserved Keywords







No comments:

Digital Design Part 3

4th→ assembler translates it to the machine language. 1.6 [20] <§1.6> Consider two diļ¬€erent implementations of the same instru...