Term
|
Definition
Used in every C++ program. Always called when your program first executes. Can call other functions from main. |
|
|
Term
|
Definition
Tells the compiler to put code from the header called iostream into our program before creating the .exe |
|
|
Term
|
Definition
|
|
Term
|
Definition
Insertion operators. Used with 'cout' to indicate what to output. |
|
|
Term
|
Definition
stands for new line. Moves cursor on your screen to the next line. |
|
|
Term
|
Definition
Keeps the window from closing. Awaits for the user to hit enter. Gives you time to see the program run. |
|
|
Term
|
Definition
Declares that X will be an integer. |
|
|
Term
|
Definition
declares a letter variable (A-Z). |
|
|
Term
int thisisanumber; cout<<"please enter a number: "; cin>> thisisanumber;
What is the purpose of the last line? |
|
Definition
The last line reads a value into thisisanumber; . |
|
|
Term
|
Definition
function that reads and ignores characters. |
|
|
Term
|
Definition
Checks to see if A is equal to 5. |
|
|
Term
|
Definition
Multiply,subtract,add,divide,equal,equal to,less than,greater than operators. Used on variables. |
|
|