check if string in string c

C
if(strstr(sent, word) != NULL) {
    /* ... */
}
Source

Also in C: