Reputation: 2041
What are the string limits for the Standard Template Library in C++?
Upvotes: 5
Views: 1791
Reputation: 84972
#include <iostream>
#include <string>
int main() {
std::cout << std::string().max_size() << std::endl;
return 0;
}
Upvotes: 19