Quote:
|
Originally Posted by amateurrobotguy
Does C have the exception that it will run everything outside of functions once and then goto rbc only?
|
C is not C++, variable declarations don't "run". They are dealt with by the compiler and the linker but not the runtime. The only thing that executes is the function "main" and anything that it directly invokes.
Lynn (D) - Team Voltage Software