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

3. What is programming language ?

4. What is Compiler ?

11. Variables in C Programming

7. Introduction of C programming :

17. Constants/Literals in C programming

10. Data Types of C Programming

15. Basic Input/output functions in C programming