Answered step by step
Verified Expert Solution
Question
1 Approved Answer
// This function should determine if two strings are equal // if they are return TRUE // otherwise return FALSE // When implementing this function,
// This function should determine if two strings are equal // if they are return TRUE // otherwise return FALSE // When implementing this function, use recursion. / HINTS: - The end of a string is denoted by'0 - If you are getting a segmentation fault then you should probably check if s1 or s2 are NULL - "char c! *s1;' w111 give you the first character in s1 // int string_compare (const char s1, const char * s2) return FALSE
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started