| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

PreprocessorComment

Page history last edited by Kenneth Finnegan 16 years ago

This code operates by having the preprocessor evaluate the expesion 0, which is always going to evaluate to be false, and the code in the if statement will be ignored.  This is a better way to comment out huge blocks of code than /* */ because it nests and is more obvious that it's a temporary removal of a chunk of code.

 

Code:

#if 0

Useless code;

More useless code;

Even more useless code;

#endif 

 


Extensions:

I would make sure to leave a comment with the #if 0 explaining why it was commented out and what it was replaced it or if it's meant to be fixed and uncommented.

 


Sources:

None.

Comments (0)

You don't have permission to comment on this page.