Comments about Comments
C++ comments: everything from “//” to the end of the line is a comment (there is no “close comment” symbol like in C)
Like most elements of C syntax, C comments (/*…*/) still work in C++
C comments (still) can’t be nested
The compiler does not understand comments. Humans do not understand obscure code.