My understanding of main()

My understanding of main() in a C++ application is it is a place the computer looks to understand the “start condition” of your application. Regardless of the number of functions you have written, when you first start a program there has to be a “start here” or “home” and main() performs this task.

1 Like

Great job answering the question!