16. Comment Lines in C programming
Comment Lines: In programming, some statements are used for the programmer to understand what he/she has done, in later. They are often called as comment lines. To use a single line comment, we used the ‘//’ symbol and for multi-line comment, we used the /* */ symbol. For example, we can write comment lines in the following way,
// This line considered as a single line comment. Hence no effect;
or
/* Multiline
The comment looks like this*/
Comments
Post a Comment