Multi-line comments start with /*
and ends with */
.
Any text between /*
and */
will be ignored by the compiler:
Example
/* The code below will print the words Hello World!
to the screen, and it is amazing */
cout << "Hello World!";
to the screen, and it is amazing */
cout << "Hello World!";
Practice Excercise Practice now