In C++, what is the header statement required to use functions that manipulate C-strings like below ?
char word[50]; strcpy(word, "Bla bla bla"); bool test2 = strcmp(word, "Something") ;
#include "cstring"
#include "c-string"
#include <cstring>
#include <c-string>