// This is a single one line comment
/*
multiline comment
*/
// 1.This is a single line comment
/* 2. This is a
multi-line comment */
//This is a single line comment in C++.
/*
This
is a
multiline comment
*/
// Comment here
/*
Comment
Here...
*/
// coment here.
// This is a Comment
/*
This is a Comment
*
/* This is a comment */
/* C++ comments can also
* span multiple lines
*/
//one line comment
/* The code below will print the words Hello World!
to the screen, and it is amazing */
cout << "Hello World!";
/* this is a comment. use /*
if you wanna close the comment. use this */
/* with this you start a dubble comment
with this you close the dubble comment */
// this is a single comment
/* if you dont close a comment the whole code will be a comment.
so it dont work anymore */
//single comment
use comments to remember code
// This is a comment
cout << "Hello World!";