1 What does our preprocessor directive do?
The preprocessor directive makes functions that are in other libraries load into or be accessible by the compiler so when they are called in the code that they can be understood. This saves on space and clutter.
- Why do we have a main function? What does it’s return statement do?
The main function where most of the work of our code is done. When executing its where the code truly starts. The return statement gives a value determines the end of the execution of a function.
Explain our expression and declaration statement that we have written so far, to summarise what our program is doing.
The expressions we’ve provided give textual statements that add flavor or information about what is occurring. The declaration statements establish variables that can be called later to perform various actions. For example, the variables are being called to perform mathematical actions to form new variables from the previously declared ones. Then expressions statements are being used to print the values of the variables when the code is compiled and executed.