Multi Line Comments
Submitted by jeffheaton on Thu, 01/10/2008 - 03:51
You can also create a multi line comment. These comments can span for many lines and allows completely free-form text to be inserted into the comment. A multi line comment begins with /* and ends with */. The following shows an example of a multi line comment.
/* Line 1 Line 2 Line 3 */
Both single and multi line comments greatly add to the readability of your program -- both for yourself and other programmers.












