C++
#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<int> myVec = {1, 3, 5, 7, 9};
// a) Complete the missing statement for the first element of the vector
cout << "First element of the vector is: " << myVec[0] << endl;
// b) Complete the missing statement for the second element of the vector
cout << "Second element of the vector is: " << myVec[1] << endl;
// c) Complete the missing statement for the third element of the vector
cout << "Third element of the vector is: " << myVec[2] << endl;
return 0;
}