Answers for "check if substring is in string C"

C
2

check if string in string c

if(strstr(sent, word) != NULL) {
    /* ... */
}
Posted by: Guest on February-23-2020

Code answers related to "check if substring is in string C"

Code answers related to "C"

Browse Popular Code Answers by Language