Q467
What will be the output of the following C++ code? #include #include #include using namespace std; int main () int myints[]= 10, 20, 30, 40, 50 ; vector myvector (4, 99); iter_swap(myints, myvector.begin()); iter_swap(myints + 3,myvector.begin() + 2); for (vector :: iterator it = myvector.begin(); it != myvector.end(); ++it) cout << ' ' << *it; return 0;
A.
10
B.
10 40
C.
10 99 40 99
AnswerD.
99 40 10
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board