Examveda

What will be the output of the following C++ code?
#include <iostream>
#include <iterator>
#include <list>
using namespace std;
int main () 
{
    list<int> firstlist, secondlist;
    for (int i = 1; i <= 2; i++)
    {  
        firstlist.push_back(i); 
        secondlist.push_back(i * 10); 
    }
    list<int> :: iterator it;
    it = firstlist.begin(); 
    advance (it, 3);
    copy (secondlist.begin(), secondlist.end(), inserter(firstlist, it));
    for ( it = firstlist.begin(); it != firstlist.end(); ++it )
        cout << *it << " ";
    return 0;
}

A. 10 20 1 2

B. 10 20

C. 1 2

D. 1 10

Answer: Option A


Join The Discussion

Related Questions on C plus plus miscellaneous

What is the difference between '++i' and 'i++' in C++?

A. None of the above

B. They both have the same effect

C. '++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it

D. '++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it