Ad Code

How Comments should be indented relative to their position in the code?

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();
}      // }
Reactions

Post a Comment

0 Comments