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