1. The second initialization below fails to compile. What can we infer about the definition of vector?
1
vector<int> v1(42); //ok:42 elements, each 0
2
vector<int> v2 = 42; //error:what does this error tell us about vector?

2

2. Given this program:









Initialize
Hello,world!
Clean up
Do not change main() in any way.