Answers for "prints each element of the array. c++"

C++
0

prints out the elements in the array c++

for (auto i : a){ //C++11
	cout << i<< " ";
}
Posted by: Guest on March-27-2021

Code answers related to "prints each element of the array. c++"

Browse Popular Code Answers by Language