Answers for "c program to check if the substring is present in the given string."

C
3

check if string in string c

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

Code answers related to "c program to check if the substring is present in the given string."

Code answers related to "C"

Browse Popular Code Answers by Language