Examveda

What will be the output of the following C++ code?
#include <iostream>
#include <iterator>
#include <vector>
using namespace std;
int main () 
{
    vector<int> myvector;
    for (int i = 1; i < 4; ++i) 
        myvector.push_back(i*10);
   ostream_iterator<int> out_it (cout,", ");
   copy ( myvector.begin(), myvector.end(), out_it );
   return 0;
}

A. 10, 20, 30

B. 10, 20

C. 10, 20, 30,

D. 30, 15, 10

Answer: Option C


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