Question: Problem 3: (C-style strings) Read the documentation for strcpy and strp http://www.cplusplus.com/reference/cstring/strcpy/ http://wwwcplusplus .com/reference/cstring/strp/ Write the functions char* my_strcpy (char* destination , const char* source);

Problem 3: (C-style strings) Read the documentation for strcpy and strp http://www.cplusplus.com/reference/cstring/strcpy/ http://wwwcplusplus .com/reference/cstring/strp/ Write the functions char* my_strcpy (char* destination , const char* source); and int my_strcmp (const char* str1, const char* str2); so that they do exactly same thing as strcpy and strcmp, respectively. You may not use any libraries aside from cassert
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
