We saw the main() function right at the start of the course. All C++ programs need a main() method and it is where the code starts executing from.

This is the most simple way to declare a main() function.

Remember, main() should return 0 to signify a successful exit or 1 to signify an error so it has a return type of int.

Nope, remember that main() needs to return something..