Comments in C

https://‮‬www.lautturi.com
Comments in C

Comments are used to describe the function of the program. During the program compilation phase, comments will be ignored by the compiler.
In C, there are two types of comments:

//  Single-line comments, all characters after the double slash to the end of the line are treated as comments and are ignored by the compiler

/* 
Multi-line 
comments
*/
Created Time:2017-08-28 14:54:14  Author:lautturi