Comments in c++




This video tutorial explains the comments in c++.
you will learn what are comments,what types of comments are there in c++, how to use comments , what are single line comments,what are multi line comments or paired comments, when to use comments in c++ in detail.
source code for this tutorial

#include 

using namespace std;

int main()
{
/*
This is a
multi line
comment

*/
cout << "this is about comments "<
                  
Back To Top