On Wed 2009-11-18 18:15:49 UTC-0000, tujare_raj1 ([email protected]) wrote:
> can we call any function before "main" function in 'C' using any > compiler without editing "start-up" file Not in a standard way. Some C compilers might support something like that though. In C++ you can have a constructor call a function before main() is called.
