C Como encontrar substring na string
if (strstr(sent, word) != NULL) {
/* ... */
}
jazzberry
if (strstr(sent, word) != NULL) {
/* ... */
}
if(strstr(sent, word) != NULL) {
/* ... */
}