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;