Adding Comments in C Program

 int  main() {

//Single line comment


/*

Multi-line comment

This is a multi-line comment.

*/


return  0;

}

You may like these posts