C comment

C
/* comments in c work like this */

/*they can be one line...*/

/*
...or
multiple
lines
*/

printf("Hello World"); /* you can comment in the same line with code */// single-line comment

/*
  multi-line
  comment
*/A comment in C starts with
/*
This is a comment, it ends with
*/// This is a single-line comment

/* This is
a multi-line
comment *//* this is how
   you comment multiple lines
   in c
   */
Source

Also in C: