Skip to content

Latest commit

History

History
25 lines (17 loc) 路 543 Bytes

max_size.md

File metadata and controls

25 lines (17 loc) 路 543 Bytes

max_size

Description : It returns an integer value which is equal to the maximum number of elements map container can hold. It accepts no parameters.

Example :

// C++ program to Demonstrate map::max_size() function 
#include <iostream>
#include <map>
using namespace std; 
  
int main() { 

    // initialize container 
    std::map<int, int> mp;
  
    // print the maximum size of map
    std::cout << "The max size of map is " << mp.max_size() ;
    
    return 0; 
} 

Run Code