C cómo encontrar la subcadena en la cadena
if (strstr(sent, word) != NULL) {
/* ... */
}
jazzberry
if (strstr(sent, word) != NULL) {
/* ... */
}
if(strstr(sent, word) != NULL) {
/* ... */
}