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