Detailed Explanation of Comments in C Language

Detailed Explanation of Comments in C Language

Comments in C language are used to provide information about lines of code and are widely used for code documentation. There are two types of comments in C language. Single-line Comments Multi-line Comments Single-line Comments They are indicated by double slashes (//). Let’s look at an example of a single-line comment in C language. #include<stdio.h>int … Read more