--- In [email protected], John Gaughan <[EMAIL PROTECTED]> wrote: > > Akash Makhija wrote: > > *why in C every program start from main()? > > main is a entry point that we all agree but where it defined..* > > > > It is defined in ISO/IEC 9899:1999. > > The main() function is what we call an axiom -- because sometimes you > can't prove it, you just need to assume it and move on. > > -- > John Gaughan >
main() function is main entry point in c compiler when program is compiling the compiler first read the main() function http://compuuttblog.blogspot.com
