I need to know what the output of the following three line is:

vector<int> v;
v.push_back (3);
cout<<v[0];

Thanks