
Overview of C++ 251
5. In monolithic programming languages such as BASIC and ASSEMBLY, the declared data vari-
ables are global and the statements ar
e written in sequence.
6. C++ programs consist of objects, classes, functions, variables, and other statements.
7. The C++ keywords are reserved words by the compiler. All C language keywords are valid in
C++ and few additional keywords are added by ANSI committee.
8. Identifiers are names of variables, functions, and arrays. They are user-defined names, consisting
of sequence of letters and digits, with a letter as a first character.
9. The constants in C++ are applicable to those ...