Embedded Systems Question:
Is it necessary to start the execution of a program from the main() in C?

Answer:
"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
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
Previous Question | Next Question |
What is the difference between fifo and the memory? | Write a code in C / Verilog to implement a basic FIR filter? |