Write a C++ program to read and display elements of an array. #include <iostream> #include <vector> // Using vector is often more modern/flexible, but a fixed-size array works too. int main() { // 1.