Comments begin with the pair of the /* symbols and end with the pair of the */ symbols.
Comments are allowed wherever the spaces are allowed.
The one-line comments (//) are supported. The part of the line following the one-line comment symbol is ignored.
Note. Only the one-line comments are allowed in the line that contains the #define directive.
Examples:
// The one-line comment
/* The multi-line comment */
|