comment in C

Comments in C language are used to provide information about lines of code. It is widely used for documenting code. There are two types of comments in the C language.
* Single line comments are represented by double slash: //. 
* Multi-Line comments are represented by slash asterisk: /* ... */. It can occupy many lines of code, but it can't be nested.