Comments in C
In this article, I will explain how to comment in the C program. By the end of this article, you will learn how to add a single-line comment and multi-line comments in your C program. I also have a video version of this article. Scroll to the bottom of this article to view the video version which includes a detailed explanation along with the hands-on example. Comments in C are used to explain or describe source code logic. There are 2 types of comments: Single line comment Multi-line comment The program will ignore whatever text we specify using comments during...