![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Although you can use the VERBOSE
macro to control run time conditional
statements, you should
prefer the conditional-compilation approach for two
reasons:
VERBOSE
to control
#ifdef
#endif
compile-time combinations, you clearly
indicate your intention to produce multiple run-time programs.
VERBOSE
to control run-time
branching statements, your compiler squanders time compiling useless
codethe unexecuted part of the if
else
statementand that useless code squanders run time memory.