Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

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");