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

how to writte comment in c++

// coment 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++ single comment

//single comment

use comments to remember code
Comment

C++ Comments

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

PREVIOUS NEXT
Code Example
Cpp :: hello c++ 
Cpp :: c++ Least prime factor of numbers till n 
Cpp :: inline c++ 
Cpp :: c++ finding gcd 
Cpp :: c++ elif 
Cpp :: std::count() in C++ STL 
Cpp :: find a number in vector c++ 
Cpp :: how to create 2d array using vector in c++ 
Cpp :: c for loop decrement 
Cpp :: map in cpp 
Cpp :: c++ program to find lcm of two numbers 
Cpp :: how to find even and odd numbers in c++ 
Cpp :: c++ print 
Cpp :: variables in c++ 
Cpp :: how to grab numbers from string in cpp 
Cpp :: Bucket and Water Flow codechef solution in c++ 
Cpp :: find text in string c++ true false 
Cpp :: how to access a vector member by its index 
Cpp :: Pseudocode of Dijkstra’s Algorithm in C++ 
Cpp :: what is a variable in cpp 
Cpp :: remove comments c++ 
Cpp :: minheap cpp stl 
Cpp :: c++ online compiler 
Cpp :: maximum subarray leetcode c++ 
Cpp :: c++ if else example 
Cpp :: minimum characters to make string palindrome 
Cpp :: definition of singly linkedlist 
Cpp :: dynamic memory in c++ 
Cpp :: queue in cpp 
Cpp :: c++ shared pointer operator bool 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =