Examveda

What will be the output of the following C++ code?
#include <iostream>
#include <map> 
using namespace std;
int main ()
{
    multimap<char, int> mymultimap;
    mymultimap.insert(make_pair('x', 100));
    mymultimap.insert(make_pair('y', 200));
    mymultimap.insert(make_pair('y', 350));
    mymultimap.insert(make_pair('z', 500));
    cout << mymultimap.size() << '\n';
    return 0;
}

A. 1

B. 2

C. 4

D. 3

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