Search
 
SCRIPT & CODE EXAMPLE
 

CPP

print array c++

void printArray(int a[],int n){
	for(int i=0;i<n;i++)
      cout<<a[i]<<" ";
  	cout<<endl;
}
Comment

prints out the elements in the array c++

for (auto i : a){ //C++11
	cout << i<< " ";
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: arduino get size of array 
Cpp :: ue4 get bone location c++ 
Cpp :: how to get mouse position on window sfm; 
Cpp :: uri online judge 1930 solution in c++ 
Cpp :: rapidjson write stringbuffer to file 
Cpp :: cpp executing without console 
Cpp :: how to create a pair of double quotes in c++ 
Cpp :: c++ converting centimeters to meters 
Cpp :: how to load from files C++ 
Cpp :: declare dictionary cpp 
Cpp :: how to make a sqlite3 object in cpp 
Cpp :: did greeks write c++ codes? 
Cpp :: c++ wait for user input 
Cpp :: extern shared memory 
Cpp :: C compile SDL program using mingw 
Cpp :: landscape overleaf 
Cpp :: recursive power in c++ 
Cpp :: how to hide ui elements unity 
Cpp :: is C++ useful in 2021 
Cpp :: how to get double y dividing 2 integers in c++ 
Cpp :: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools" 
Cpp :: cmath sqrt 
Cpp :: print in c++ 
Cpp :: Could not load the Visual C++ component "VCBuild.exe". To fix this, 1) install the .NET Framework 2.0 SDK, 2) install Microsoft Visual Studio 2005 or 3) add the location of the component to the system path if it is installed elsewhere. 
Cpp :: convert long int to binary string c++ 
Cpp :: string to number in c++ 
Cpp :: array and for loop in c++ 
Cpp :: print vector of vector c++ 
Cpp :: c++ char it is a number 
Cpp :: c++ if in equivalent 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =