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

Popular posts from this blog

12. Library Functions of C Programming

13. Control Strings in C Programming

4. What is Compiler ?

7. Introduction of C programming :

18. Identifiers and Keyword in C programming

10. Data Types of C Programming

3. What is programming language ?

8. Program structure rules of C programming

9. Header Files of C Programming