How we can add commnets in C?

Comments in C 

Two types of comments.

1.  /*     */
2.  //


#include <stdio.h>
/* This is a comment ignored by the compiler */
int main() /* This is another comment ignored by the compiler */
{
printf("comments ");
}
//One Line Comments

Most Popular

The difference between React vs AngularJs

How to send emails using PHPmailer and GMAIL SMTP

Enabling Gzip Compression of PHP, CSS, and JS Files Without mod_deflate