- #include <stdio.h>
- #include <string.h>
- void main(void)
- {
- printf("Looking for Abc in AbcDef %sn",
- (strstr("AbcDef", "Abc")) ? "Found" : "Not found");
- printf("Looking for Abc in abcDef %sn",
- (strstr("abcDef", "Abc")) ? "Found" : "Not found");
- printf("Looking for Abc in AbcAbc %sn",
- (strstr("AbcAbc", "Abc")) ? "Found" : "Not found");
- }