The main Function
Any program written in C and C++ begins with a function called main, the first statement in the main function is the first statement to be executed. C++ programs can only have one main function.
{ and } specify when main starts and when it ends.
void main()
{ // Statements
}