size of map c++ code example
Example 1: size of map with no elements
#include <iostream>
#include <utility>
#include <map>
using namespace std;
int main(void)
{
map<int, int> m;
cout << m.size();
}
//Output: 0
Example 2: size of map c++
map_name.size()