hi C gurus do anyone of u know how to write a program in C without
main and still create a executable out of it. Remember, I said no
main() function not in
-->include files
-->libraries
-->no define thisthat main
I mean absolutely no main() atall
Well to start off here one method :
main() is called in C run time object crt0.o. But if we want to write
crt0.S of our own what r the things we have to do? can anyone explain
me whats going on behind this C run time?
main and still create a executable out of it. Remember, I said no
main() function not in
-->include files
-->libraries
-->no define thisthat main
I mean absolutely no main() atall
Well to start off here one method :
main() is called in C run time object crt0.o. But if we want to write
crt0.S of our own what r the things we have to do? can anyone explain
me whats going on behind this C run time?
Comment