C++ Multi-line comments

/ This is a multi-line comment in C++. It starts with "/" and ends with " /". Anything between the start and end is considered a comment and will be ignored by the compiler. This is often used to add explanations or notes within the code. It is a good practice to use comments to make the code more understandable to other programmers. /