C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C++ Vector max_size()This function is used to provide the maximum size that vector can hold. SyntaxConsider a vector 'v' and maximum size 'm'. Syntax would be : int m=v.max_size(); ParameterIt does not contain any parameter. Return valueIt returns the maximum number of elements that vector can hold. Example 1Let's see a simple example. #include Output: 4611686018427387903
Next TopicC++ Vector
|