4 Answers
0
It is // in c++.
0
Or you can put comment between /* this is comment */.
0
Absolutely not the same..
# in C++ is used for the preprocessing directives such as:
#include
#define
#ifndef
#endif
etc..
The comments in C++ have the next structure:
//use this for one comment line...
/* and this
for
many
different
lines
of
comments */
0
Wow this is gonna take some getting used to lol