Search
 
SCRIPT & CODE EXAMPLE
 

CPP

vectorv[]

vector<int>v;=>here we have created only one vector. v.push_back(10).  
vector<int>v[10];=>here we have created 10 vector,v[0],v[1],.....
               we push element like.
                v[0].push_back(10); v[0].push_back(40),v[1].push_back(23)
Comment

PREVIOUS NEXT
Code Example
Cpp :: c++ variable type 
Cpp :: basic cpp 
Cpp :: min heap stl 
Cpp :: c++ unittest in ros 
Cpp :: what is a variable in cpp 
Cpp :: set size of a vector c++ 
Cpp :: how to format big numbers with commas in c++ 
Cpp :: three way comparison operator c++ 
Cpp :: how to concatinate two strings in c++ 
Cpp :: c++ add input in 
Cpp :: ascii allowed in c++ 
Cpp :: Abstract factory C++ code 
Cpp :: find an element in vector of pair c++ 
Cpp :: shortest path in unweighted graph bfs 
Cpp :: size of unordered_set 
Cpp :: cpp undefined reference to function 
Cpp :: minimum characters to make string palindrome 
Cpp :: if not c++ 
Cpp :: memcpy in cpp 
Cpp :: c++ last element of array 
Cpp :: compile and run cpp file on mac c++ 
Cpp :: c++ visual studio 
Cpp :: C/C++ loop for 
Cpp :: progress indicator raytracer 
Cpp :: vector keyword in c++ 
Cpp :: no of balanced substrings 
Cpp :: error c4001 site:docs.microsoft.com 
Cpp :: c++ execute thread and forget 
Cpp :: C++ Display a text 5 times 
Cpp :: overload operator object function call 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =