How does placing some code lines between comment symbols help in debugging the code?
- Placing comment symbols /* */ around a code separates some code that coder believes might be causing the errors in program, without deleting it. - If code is correct, you may just remove the comment symbols, without needing to retype it.
- If it's wrong, you can just remove it.