Asked by Julia Herbst on Jul 18, 2024

verifed

Verified

/* this is a comment */ is not a valid C++ comment.

Valid C++ Comment

A notation within C++ code meant for human readers and not interpreted by the compiler, typically using // for single-line or /* */ for multi-line comments.

  • Identify the comment syntax used in C++.
verifed

Verified Answer

MQ
Marah QasimJul 18, 2024
Final Answer :
False
Explanation :
/* this is a comment */ is a valid C++ comment, using the syntax for multi-line comments.