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

  • Whenever you search in PBworks or on the Web, Dokkio Sidebar (from the makers of PBworks) will run the same search in your Drive, Dropbox, OneDrive, Gmail, Slack, and browsed web pages. Now you can find what you're looking for wherever it lives. Try Dokkio Sidebar for free.

View
 

PreprocessorComment

Page history last edited by Kenneth Finnegan 15 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.