Comments
suggest changeIntroduction
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.
Syntax
/*...*/
//...
(C99 and later only)
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents