comment in C++

A C++ comment is written in one of the following ways:
* The /* characters, followed by any sequence of characters (including new lines), followed by the */ characters. This syntax is the same as ANSI C.
* The // characters, followed by any sequence of characters. A new line not immediately preceded by a backslash terminates this form of comment. Therefore, it is commonly called a "single-line comment."