+ 2
Why main function is special in c++ ?
main function
5 Antworten
+ 5
Main is the entry point. Without main program won't run
+ 4
infact many languages needa a start point. even your computer!!! when you press your on/off button your bios is telling where is your hard disk where is the monitör even keyboard and mouse.
so there should be a main function telling where to go first other wise your program will never start doing something
+ 3
because it is entry point of your program.
+ 2
thank you guys i understand