C++ Comments
Study what comments are and why we should write them.
We'll cover the following...
Introduction to comments
Comments are statements written inside the source code to make it easily understandable. The compiler ignores the comments, which is why they don’t affect the logic of our program.
📝Note: We write comments for the documentation of our program and to help other people understand our code.
Example
Suppose Educative hires ...