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

add comment in c/c++

/* This is a comment */

/* C++ comments can also
   * span multiple lines
*/
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++ Comments

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

PREVIOUS NEXT
Code Example
Cpp :: c++ program to convert time in seconds to hours minutes and seconds 
Cpp :: what is vector capacity in c++ 
Cpp :: copying a file to an array and sorting 
Cpp :: add two constant char pointers c++ 
Cpp :: how to get steam id c++ 
Cpp :: c++ string to const char* 
Cpp :: Snake Procession codechef solution in c++ 
Cpp :: To toggle (flip the status of) the k-th item of the set 
Cpp :: how to replace a element in a vector c++ using index 
Cpp :: find the number of digits of a given integer n . 
Cpp :: break input stream into words 
Cpp :: how to read and write to a file in qt c++ 
Cpp :: generate consecutive numbers at compile time 
Cpp :: variabili in c++ 
Cpp :: test3 
Cpp :: Remove the jth object from the subset 
Cpp :: time optimisation c++ 
Cpp :: time out search element in linked list c++ 
Cpp :: this is my p phone number in punjabi 
Cpp :: Magical Doors codechef solution in c++ 
Cpp :: font family slick 
Cpp :: C++ Things to Remember 
Cpp :: c++ rainbow text 
Cpp :: amusia 
Cpp :: c++ cout 
Cpp :: binpow in fenwick tree 
Cpp :: while loop c++ 
Cpp :: frequency of characters in a string in c++ 
Cpp :: make an x using asterisk c++ 
C :: random number between 2 in C 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =