Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
using namespace std; int main() { // Create a list called cars that will store strings list
cars = {"Volvo", "BMW", "Ford", "Mazda"}; // Get the first element cout << cars.front() << "\n"; // Get the last element cout << cars.back() << "\n"; return 0; }
Volvo
Mazda