#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector <int> numbers;
for (int i=0; i<10; i++) {
numbers[i]=0;
cout << numbers[i] << endl;
}
return 0;
}
I am just starting C++ and I have got this trouble. I would be very grateful if anyone could help me on this.