1/18/00
COM1100 Winter2000 Yuhong Yin Northeastern University
14
C++ Comments
nIn C++, two methods for writing comments.
oC style comments
n/* here is a remark */
n/* here is a comments
n       goes to another line */
nC++ one line comment
n// to the end of the current line
nx =  x + 1; // increment x by 1
n// Here is a C++ remark
n