What dou you mean by a comment statement in a C program?Explain with an examples.
Answers
Answered by
0
Answer:
comment statement is a statement which is not executed by the program. it is meant to be only readable and non-executable. any statement followed by // is a comment in javascript
Answered by
0
Explanation:
Comment statements are the sentences put by the programmer to explain the process, for easy understanding or for later reference.
These statements are not considered by the compiler while compiling.
Example. int x; // Declaring integer x
//comment line
// indicate that the sentence is a comment.
Similar questions