Answers for "c++ for in"

C++
1

c++ for in

// just example for explanation :)
	
	// vector containt strings
	vector<string> USERS;
	
	// take string from 'USERS' 
	// under name 'user' in each time :)
	for(string user : USERS){
    	std::cout << user << std::endl;
    }
Posted by: Guest on October-23-2021
7

range based for loop c++

array<int, 5> values = {1, 2, 3, 4, 10};
// the type declaration below must be consistent with the array type
for (int x : values){ //we use a colon instead of in
cout << x << endl;
}
Posted by: Guest on May-25-2020

Browse Popular Code Answers by Language