1) Assign searchResult with a pointer to any instance of searchChar in personNam
ID: 640402 • Letter: 1
Question
1)
Assign searchResult with a pointer to any instance of searchChar in personName.
#include <stdio.h>
#include <string.h>
int main(void) {
char personName[100] = "Albert Johnson";
char searchChar = 'J';
char* searchResult = NULL;
/* Your solution goes here */
if (searchResult != NULL) {
printf("Character found. ");
}
else {
printf("Character not found. ");
}
return 0;
}
2)Assign movieResult with the first instance of The in movieTitle.
#include <stdio.h>
#include <string.h>
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. ");
}
else {
printf("No. ");
}
return 0;
}
Explanation / Answer
1st solution would be searchResult = strchr(personName,searchChar);
2nd solution would be movieResult = strstr(movieTitle, "The");
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.