Comments are used to indicate something to the person reading the code. Comments are treated like a blank by the compiler and do not change anything in the code's actual meaning. There are two syntaxes used for comments in C, the original /* */
and the slightly newer //
. Some documentation systems use specially formatted comments to help produce the documentation for code.
/*...*/
//...
(C99 and later only)