A C++ comment block, also known as a multi-line comment, is a way to document code or temporarily disable portions of code in a C++ program. It's enclosed within /* and */, and any text within these delimiters is treated as a comment by the compiler, meaning it won't be executed as code.