cstring
char* str = new char[strlen("Hello World") + 1];
strcpy(str, "Hello World");
// ... use str ...
delete[] str;char str[] = "Hello World"; // null-terminated character array
string str = "Hello World"; // C++ stringsize_t len = strlen("Hello World");char* result = strcat(str1, str2);int comparison = strcmp(str1, str2);char c = str[0];str[0] = 'H';