What does our preprocessor directive do?
It loads library before the code is even compiled
Why do we have a main function?
It’s like the skeleton of the code, without it the program won’t start at all
What does it’s return statement do?
It says if we wrote correctly our code. We’re stating that return = 0 so if it returns anything but 0 there’s clearly an error.
Explain our expression and declaration statement that we have written so far, to summarise what our program is doing.
First we wrote some lines of text, then we’re declaring our variables(in this case they’re constants). Lastly we’re trying to write our values using the variable sum and product!