Computer Science, asked by yugal9737, 11 months ago

How can be comment be inserted in a program

Answers

Answered by BrainlyShadow01
4

Answer:

A comment starts with a slash asterisk /* and ends with a asterisk slash */ and can be anywhere in your program. Comments can span several lines within your C program. Comments are typically added directly above the related C source code.

Explanation:

#Be BRAINLY

Answered by Anonymous
5

Answer:

A handy rule of thumb is: a comment should only be added to answer a question that the code can't. If you aren't confused by what a piece of code is doing, but rather why it's doing it at that moment, then a comment should be added.

Explanation:

Similar questions