Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

int isContained (char*, int, char*, int); int main() { char sl[STR LEN); char s2 [STR_LEN); printf(Please enter the first string: ); fgets (sl, STR_LEN, stdin);

image text in transcribed
int isContained (char*, int, char*, int); int main() { char sl[STR LEN); char s2 [STR_LEN); printf("Please enter the first string: "); fgets (sl, STR_LEN, stdin); sl[strlen(sl)-1]='\0'; printf("Please enter the second string: "); fgets (S2, STR_LEN, stdin); s2[strlen(82)-1)='\0'; printf("The first string is %s ", s1); printf("The second string is %s ", s2); if (isContained (si, strlen(sl), s2, strlen(82)) =-1){ printf("The second string is a substring of the first string "); } else { printf("The second string is NOT a substring of the first string ") return 0; int isContained (char *si, int size_si, char *s2, int size_s2){ // YOUR CODES return -1; // For compilation. You need to change it

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Microsoft SQL Server 2014 Integration Services

Authors: Brian Knight, Devin Knight

1st Edition

1118850904, 9781118850909

More Books

Students also viewed these Databases questions