My way of sectioning (especially when among declarations)
#if true
...
#endif
More advanced, as needed:
#define TESTING true //here you can easily switch status of your code
...
...
#if TESTING
... // your commands for testing only
#endif
#if !TESTING
... // production mode code
#endif