SINGLE LINE COMMENT

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

ex

// this is single line comment.

Ex of single line comment

//this code use for some task

#include<stdio.h>

void main()

{

  printf(“hello vikas”);

}