C++ Comments
C++ Comments Every comment-program is the explanatory statement that we also include in the C++ code. The comment statements can help anyone to understand each processing step by step by reading from the source code. All programming languages always allow for some forms of comments, but in different forms of each programming language. The C++ comments support single-line and multiple-line. All characters must be available inside any comment and always ignored by the compiler of C++. Normally, C++ comments start with /* and end with */. For example: /*This is my comment in single-line*/ /*This my comment in multiple-line *C++ can also support for multiple-line */ We can also extending the comment at the of each line with //. For example: #include<iostream> using namespace std; main(){ cout<<"Hello World!"; //Prints Hello World! return 0; } When compiling the source code above, the compiler will ignore / /Prints Hello World!, So the fin...