hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.4K
active users

Šimon Tóth

The std::string is a container for storing null-terminated narrow character strings.

std::string provides very similar functionality to std::vector while maintaining the null-termination invariant on every operation.

Additionally, std::string also provides a couple of convenience methods (find, starts/ends_with, contains, substr).

Compiler Explorer link: compiler-explorer.com/z/M5e4dc