Comment types in C

https‮:‬//www.lautturi.com
Comment types in C

Comments help us provide information about code statements.
The compiler ignores comments at compile time.
Let's see how to provide annotations in C programming.
-"//" (double slash) for single line comments
-"/*..... Some comment lines..... */" indicate multiple lines of comments.

/*
This is Multi-Line Comment.
Comments are ignored by the compiler.
*/

//This is a single line Comment
int a = 10; //Declaring an integer variable and assigning value as 10;
Created Time:2017-08-28 15:04:07  Author:lautturi