Which is the best C++ comment style to use?
What will be an ideal response?
It is up to the programmer to decide the best style depending on the code he is commenting. The /* */ type is probably better for the beginning of a file to comment a block of information. The // is best for short comments or comments located beside code statements.
Computer Science & Information Technology