Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
using namespace std; int main() { vector
cars = {"Volvo", "BMW", "Ford", "Mazda"}; vector
carbrands; carbrands.assign(cars.begin(), cars.end()); for (string brand : carbrands) { cout << brand << "\n"; } return 0; }
Volvo
BMW
Ford
Mazda