Hello, I need to search a char array, for a particular word... E.g.
char * search;
char arr[10] = {'b', 'c', 'a', 't', 'h', 'e', 'p', 'h'};
string words[1] = {"the"};
search = strstr (alphabet, words);
But it doesn't work... Any ideas what the problem could be?
Thanks :)