+1 vote
in C Plus Plus by

There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affects when debugging?

1 Answer

0 votes
by

This concept called commenting out and is the way to isolate some part of the code which scans possible reason for the error. Also, this concept helps to save time because if the code is not the reason for the issue it can simply uncomment.

Related questions

+1 vote
asked Feb 17, 2021 in Linux by SakshiSharma
+2 votes
asked Jan 10, 2021 in Python by rajeshsharma
...