1)
Assign searchResult with a pointer to any instance of searchChar in
personName. #include
#include
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
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”);
- The Importance of Customer Communication and Experience in Field Service Management - March 1, 2023
- How can Mobile Device Financing Improve the Digital Divide in Developing Nations? - February 28, 2023
- How to become a data analyst in 2023? A step-by-step guide - February 28, 2023