A | B |
braces | special characters used to mark the beginning and ending of blocks of code |
case sensitive | uppercase and lowercase letters are interpreted differently |
comments | remarks in a program that are ignored by the compiler |
compiler directive | commands for the compiler, which are needed to effectively compile your program |
function | a block of code that carries out a specific task |
header file | a file that serves as a link between your program code and other C++ code that is needed to make your program run |
lowercase | the non-capital(small) letters of the alphabet |
main function | the function where every C++ program begins |
statements | lines of C++ code that end with a semicolon |
uppercase | the capital letters of the alphabet |