MULTILINE COMMENT

This is used to explain the code and make it more readable.

/* this is multi

Line comment */

Ex of multiline comment

/*this is multi line

Comment  and this code

Use for some task*/ 

//this is multi line

//Comment  and this code

//Use for some task  

#include<stdio.h>

void main()

{

  printf(“hello vikas”);

}