Answers for "c++ comment line"

C++
2

how to make a comment in c++

//This is a single line comment in C++.

/*
This
is a 
multiline comment
*/
Posted by: Guest on May-31-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

Browse Popular Code Answers by Language