Examveda

What will be the output of the following C++ code?
#include <iostream>
#include <deque>
using namespace std;
int main ()
{
    deque<int> mydeque (5);  
    deque<int>::reverse_iterator rit = mydeque.rbegin();
    int i = 0;
    for (rit = mydeque.rbegin(); rit!= mydeque.rend(); ++rit)
        *rit = ++i;
    for (deque<int> :: iterator it = mydeque.begin();
    it != mydeque.end(); ++it)
    cout << ' ' << *it;
    return 0;
}

A. 12345

B. 1234

C. 54321

D. 43210

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