As a part of the course, a challenge was posed to explain what I think the main
function is.
I think it is the entry point into the program, meaning that everything is kicked off from within it.
I’m not sure if every single C++ program, regardless of how complex or simple has a main
function hidden away somewhere, or if this is more of a “my first program” construct.
Also, I do not know if there are other functions, that are not the main
function, that allow a program to run instead of the main
function.