Jump to

v01-l1-cString

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") ;

???