Question: C PROGRAMMING Write your own versions of the functions strcpy and strcat, which receive as parameter two pointers. Name functions mystrcpy and mystrcat. Make a
C PROGRAMMING
Write your own versions of the functions strcpy and strcat, which receive as parameter two pointers. Name functions mystrcpy and mystrcat. Make a brief main function to test the functions.
Your functions are pre-defined like this:
char* mystrcpy(char* target, const char* source); char* mystrcat(char* target, char* source);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
