What does our preprocessor directive do?
It tells the compiler to include the library code into our cpp file.
Why do we have a main function? What does it’s return statement do?
The main function is the entry point of our application. Our code starts executing from its beginning.
We have a “return 0” statement to let the compiler know at the end of execution that everything went as expected
Explain our expression and declaration statement that we have written so far, to summarise what our program is doing.
Expression statements : Used to output information to the console.
Declaration statements : Used to create our variables.