Comments in C Language
https://www.computersprofessor.com/2016/05/comments-in-c-language.html?m=0
The lines
beginning with /* and ending with */ are known as comment lines.
These are used in a program to
enhance its readability & understanding comments are included in a ‘C’
program when ever some explanation is required for that part of a program.
Comment lines are not executable
statements & anything between /* and */ is ignored by the complier.
C language supports 2 types of
comments.
1. Single line
comment : starts with //
2. Multi line comment : starts with / * and ends with */.
Although comments can appear any where, they
cannot be nested in C. that means, we cannot have comments inside comments.