What does our preprocessor directive do?
Tells the processor to call on a library of pre-written code.
Why do we have a main function? What does it’s return statement do?
The main function is the starting point to all code and is required as a starting point to return too.
Explain our expression and declaration statement that we have written so far, to summarise what our program is doing.
The expression is in our case is the text displayed to instruct the operator how to proceed,
The declaration is telling the compiler what we want it to do in our case make our named variables act as a number and also change that number using math followed by displaying it.