Computer Science, asked by Rashmi9913, 10 months ago

what do you mean by comment statement in a C program?Explain with an example​

Answers

Answered by sujalmotagi
17

A comment is a statement that is written just for the understanding of the reader. it it is not processed by the compiler and does not affect the program.

E.g

//this is a single line comment

/*

this is a multiline comment

in C

*/

please mark my answer as brainliest.

Answered by rashidnafishamm
2

Answer:

in computer programming a comment is a programmer readable explanation or annotation in the source code of a computer program. They are added with the purpose of making the source code easier for humans to understand and are generally ignored by compiler and interpreter.

Similar questions