C++Introduction to C++Learn C++

Learn How To Use Comments In C++

In all programming languages, comments are used to explain something in a normal way, something like post-its you put into lines to remember or to notify other developers. In C and C++, there are two kinds of commenting character series;1. Single Line Commenting with //Double forward slashes, // is used as a single-line comment. They are good to add some note before your code lines or after your…
Read more