C++ Comments
Comments are the chunks of lines ignored by the compiler while compiling the code. Comments are useful for understanding and explanation of the code. C++ allows single line as well as multiple line comments. Single Line Comments: If any line is pre-appended by double backslashes (//) then the line gets commented and compiler ignores such … Read more