Answers for "how to make a comment in c++"

C++
10

c++ comment

/* This is a comment */

/* C++ comments can also
   * span multiple lines
*/

/* Meowwwwww */
Posted by: Guest on February-23-2020
10

comment in c++

// This is a single one line comment

/*
multiline comment
*/
Posted by: Guest on July-18-2020
1

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

Code answers related to "how to make a comment in c++"

Browse Popular Code Answers by Language