SomeUser
SomeUser

Reputation: 2041

What are the STL string limits?

What are the string limits for the Standard Template Library in C++?

Upvotes: 5

Views: 1791

Answers (1)

Alex B
Alex B

Reputation: 84972

#include <iostream>
#include <string>

int main() {
    std::cout << std::string().max_size() << std::endl;
    return 0;
}

Upvotes: 19

Related Questions