Question

Which statement about "commenting out" code is false?
a) During program development, programmers often find it helpful to "comment out" portions of code to prevent it from being compiled.
b) Code may not always be "commented out" correctly simply by enclosing that code in the C comment delimiters /* and */.
c) The following preprocessor code effectively comments out code
#if 0
code prevented from compiling
#endif
d) The following preprocessor code effectively comments out code
#if 1
code prevented from compiling
#endif

Answer

This answer is hidden. It contains 3 characters.