Search
 
SCRIPT & CODE EXAMPLE
 

CPP

comment in c++

// This is a single one line comment

/*
multiline comment
*/
Comment

comment in c++

// 1.This is a single line comment

/* 2. This is a
	multi-line comment */
Comment

how to make a comment in c++

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

/*
This
is a 
multiline comment
*/
Comment

c++ comment

// Comment here
/*
	Comment
    Here...
*/
Comment

comment in C++

// This is a Comment
/*
This is a Comment
*
Comment

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!";
Comment

c++ comment

/* this is a comment. use /*
if you wanna close the comment. use this */
Comment

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 */
Comment

c++ single comment

//single comment

use comments to remember code
Comment

C++ Comments

// This is a comment
cout << "Hello World!";
Comment

C++ Single Line Comments

// declaring a variable
int a;

// initializing the variable 'a' with the value 2
a = 2;
Comment

PREVIOUS NEXT
Code Example
Cpp :: how to get max grade c++ 
Cpp :: C++ References 
Cpp :: play roblox vr on quest 2 
Cpp :: C++ selectin file location using Win32 API 
Cpp :: C++ Vector Initialization method 01 
Cpp :: c++ cash card 
Cpp :: cannot access base class members 
Cpp :: hpp files 
Cpp :: c++ find unused class methods 
Cpp :: run program until ctrl-d c++ 
Cpp :: The smallest element from three 
Cpp :: Targon lol 
Cpp :: Calcular el número mayor y menor C++ 
Cpp :: Pawri Meme codechef solution in c++ 
Cpp :: copy constructor in c++ questions 
Cpp :: generate consecutive numbers at compile time 
Cpp :: How to clear keyboard buffer c++ 
Cpp :: # in c++ 
Cpp :: auto keyword 
Cpp :: compile c++ program 
Cpp :: 123213 
Cpp :: dignità 
Cpp :: qt/c++ exception handler 
Cpp :: const char * to std::wstring 
Cpp :: are maps sorted c++ 
Cpp :: bullet physics directx 11 
Cpp :: iterator c++ 
Cpp :: c++ split string by sstream 
Cpp :: math in section latex 
Cpp :: c++ delete int 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =