Fill This Form To Receive Instant Help

Help in Homework
trustpilot ratings
google ratings


Homework answers / question archive / 1)Assign searchResult with a pointer to any instance of searchChar in personName

1)Assign searchResult with a pointer to any instance of searchChar in personName

Computer Science

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.\n");
}
else {
printf("Character not found.\n");
}   

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.\n");
}
else {
printf("No.\n");
}

return 0;
}

pur-new-sol

Purchase A New Answer

Custom new solution created by our subject matter experts

GET A QUOTE

Answer Preview

1st solution would be searchResult = strchr(personName,searchChar);

2nd solution would be movieResult = strstr(movieTitle, "The");

Related Questions