#include #include #include #include using namespace std; int main() { //Define an initializer list of 3 elements 100 200 300 //Try changing the first element using the //iterator notation //Print the list using the range based loop //Define a std::array of 3 elements 100 200 300 //Try changing the first element using the //iterator notation //Print the array using the range based loop return 0; }