Q646
What will be the output of the following C++ code? #include #include using namespace std; int main() vector v; for (int i = 1; i <= 5; i++) v.push_back(i); cout<<v.size()<<endl; v.resize(4); cout<<v.size()<<endl; return 0;
A.
5
4
Answer4
B.
5
5
5
C.
4
4
4
D.
Error
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board