Answers for "function comments c++"

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
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

c++ comment

/* this is a comment. use /*
if you wanna close the comment. use this */
Posted by: Guest on February-11-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