How Comments should be indented relative to their position in the code? Give an example
Comments should be indented relative to their position in the code.
while (true) { // NOT: while (true)
{
// Do something // // Do something
something(); // something();
} // }
while (true) { // NOT: while (true)
{
// Do something // // Do something
something(); // something();
} // }
0 Comments
Please add nice comments or answer ....