0
Why we use int main()
2 odpowiedzi
0
main method is the starting point of every c++ program.
Although your program is compiled from top to bottom it is run from main method and outside the main method everything is useless unless you don't use it in your main method.