Answers for "basic hello world c++ with comments"

C++
1

comment in c++

// 1.This is a single line comment

/* 2. This is a
	multi-line comment */
Posted by: Guest on May-29-2021
0

comment in c++

//one line comment

/* The code below will print the words Hello World!
to the screen, and it is amazing */
cout << "Hello World!";
Posted by: Guest on January-12-2022
0

c++ single comment

//single comment

use comments to remember code
Posted by: Guest on February-14-2022
0

c++ comment

/* 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 */
Posted by: Guest on February-13-2022

Browse Popular Code Answers by Language