Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <shlwapi.h>
- int main() {
- const char haystack[] = "TutorialsPoint";
- const char needle[] = "Point";
- const char* ret;
- ret = StrStrI(haystack, needle);
- printf("The Substring Is: %s\n", ret);
- printf("Press To Enter Continue ... ");
- (void)getchar();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement