Comments

Christine_Yang271 total contributions
Published May 6, 2021Updated Dec 21, 2022
Contribute to Docs
A comment is a piece of text within a program that is not executed. It can be used to provide additional information to aid in understanding the code.
Single-line Comments
Single-line comments are created using two consecutive forward slashes. The compiler ignores any text after //
on the same line.
// This line will denote a comment in C++
Multi-line Comments
Multi-line comments are created using /*
to begin the comment, and */
to end the comment. The compiler ignores any text in between.
/*This is all commented out.None of it is going to run!*/
Codebyte Example
Here’s a program with a multi-line comment and two single-line comments:
All contributors
- Christine_Yang271 total contributions
- garanews222 total contributions
- christian.dinh2481 total contributions
- Anonymous contributorAnonymous contributor3077 total contributions
- Christine_Yang
- garanews
- christian.dinh
- Anonymous contributor
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.