| A | B |
| # | Means that it has a special meaning, depending on the symbol following it |
| include | Instructs an interpreter to include the contents of the header file in the program |
| control keyword | Control the order of execution of program blocks |
| return 0 | Terminates the program |
| Function | a basic executable module in a c program |
| Calling the function | When you ask a function to perform its assigned task it is known as |
| Parenthesis | indicates that the symbol is a function |
| Argument | A communication method between functions that provides a list of values |
| Statements | A function consists of __________ that specify actions to be taken |
| Braces | The statements of the functions are in-closed in these. |
| left brace | begins the body of the function |
| right brace | ends a function definition |
| printf() | example of a called function |
| character string | A sequence of characters enclosed in a pair of double quotes |
| backslash\ | called an escape key |
| \n | means a new line character |
| Parse command | Will check the syntax errors with out executing the program |
| Run command | Executes the program |
| Stop command | Will stop the program |
 | LegoMindstorm |