Hi Guru here.......my question is....... Is it necessary to
start the execution of a program from the main() in C?

Answers were Sorted based on User's Feedback



Hi Guru here.......my question is....... Is it necessary to start the execution of a program from ..

Answer / kumar

we can execute the program without main() also,but according
to the standardization of 'c' we must write the main
function.main is called as start-up function......during
compilation there will be a _start function by which the
execution starts.this _start calls main,after main execution
it returns to the _start function then it starts the
execution of the remaining code............

Is This Answer Correct ?    5 Yes 0 No

Hi Guru here.......my question is....... Is it necessary to start the execution of a program from ..

Answer / ian

"Normally you are at liberty to give functions whatever
names you like, but ``main'' is special - your program
begins executing at the beginning of main. This means that
every program must have a main somewhere." Kernighan &
Ritchie - The C Programming Language 2ed. p.6

Is This Answer Correct ?    7 Yes 4 No

Hi Guru here.......my question is....... Is it necessary to start the execution of a program from ..

Answer / shreepad

Most new toolchains allow you to configure the entry point
other than main(). hence unless other wise specified, main
is the default entry point.

Is This Answer Correct ?    3 Yes 0 No

Hi Guru here.......my question is....... Is it necessary to start the execution of a program from ..

Answer / amol

no

Is This Answer Correct ?    6 Yes 8 No

Post New Answer

More Embedded Systems AllOther Interview Questions

How can you ensure that debugging a program while it's being used will not affect its functionality?

0 Answers  


What software configuration management tools are you familiar working with?

0 Answers  


What type of scheduling is there in rtos?

0 Answers  


How does the interrupt architecture works?

0 Answers  


Explain the significance of watchdog timer in embedded systems?

0 Answers  






Explain the uses of timers in embedded system?

0 Answers  


Explain what is the difference between mutexes and semaphores?

0 Answers  


What is spin lock?

0 Answers  


What is refactoring? Name three common refactorings.

0 Answers  


Name three primary attributes of object-oriented design. Describe what they mean and why they're important.

0 Answers  


Explain how does combination of functions reduce memory requirements in embedded systems?

0 Answers  


What is solid?

0 Answers  


Categories