Answered by AI, Verified by Human Experts
The first answer issearchResult= strchr (personName, searchChar); the second is movieResult = strstr (movieTitle, "The");What do you meant by print?A printed copy. (2): a photomechanically created replica of an original art piece (such as a painting). (3): an actual work of artwork (such as a printing,etching, or print) created by or under the direction of the artist who produced it and meant for graphic reproduction.1) Give any occurrence is searchChar in personName a reference in searchResult.#include#includeint 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 a film The first occurrence of An in movieTitle appears in the result.#include#includeint 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;To know more aboutprintvisit:brainly.com/question/14668983#SPJ4...