• C++ Basics

A comment is a programmer-readable note that is inserted directly into the source code of the program. Comments are ignored by the compiler and are for the programmer’s use only. In C there are two different styles of comments, both of which serve the same purpose: to help programmers document the code in some way. Code with C is a comprehensive compilation of Free projects, source codes, books, and tutorials in Java, PHP.NET, Python, C, C, and more. Our main mission is to help out programmers and coders, students and learners in general, with relevant resources and materials in the field of computer programming.

  • C++ Object Oriented
  • C++ Advanced
  • C++ Useful Resources
  • Selected Reading

Program comments are explanatory statements that you can include in the C++ code. These comments help anyone reading the source code. All programming languages allow for some form of comments.

C++ supports single-line and multi-line comments. All characters available inside any comment are ignored by C++ compiler.

C++ comments start with /* and end with */. Download cooking academy 2 full. For example −

A comment can also start with //, extending to the end of the line. For example −

When the above code is compiled, it will ignore // prints Hello World and final executable will produce the following result −

Lines Of Code Counter

Within a /* and */ comment, // characters have no special meaning. Within a // comment, /* and */ have no special meaning. Thus, you can 'nest' one kind of comment within the other kind. For example −