how to print each element of a list in c++ code example
Example: how to print list in c++
#include <iostream>
#include <list>
std::list<int> listOfNumbers = {1, 2, 3, 4};
for (int item : listOfNumbers)
std::cout << item << " ";
#include <iostream>
#include <list>
std::list<int> listOfNumbers = {1, 2, 3, 4};
for (int item : listOfNumbers)
std::cout << item << " ";