Assign searchresult with a pointer to any instance of searchchar in personname. hint: use strchr().

1)
Assign searchResult with a pointer to any instance of searchChar in
personName. #include
#include int main(void) {
char personName[100] = “Albert Johnson”;
char searchChar = ‘J’;
char* searchResult = NULL; /* Your solution goes here */ if (searchResult != NULL) {
printf(“Character found.n”);
}
else {
printf(“Character not found.n”);
} return 0;
}
2)Assign movieResult with the first instance of The in
movieTitle. #include
#include int main(void) {
char movieTitle[100] = “The Lion King”;
char* movieResult = NULL; /* Your solution goes here */ printf(“Movie title contains The? “);
if (movieResult != NULL) {
printf(“Yes.n”);
}
else {
printf(“No.n”);
} return 0;
}

1st solution would be searchResult =
strchr(personName,searchChar);
2nd solution would be movieResult = strstr(movieTitle,
“The”);

Leave a Comment