Question: (C language) Consider the following code. (5 marks) void strcopy(char s1[], char s2[]) { int len = strlen(s2); for (int i = 0; i

(C language) Consider the following code. (5 marks) void strcopy(char s1[], char s2[]) { int len = strlen(s2); for (int i = 0; i<=len; i++) { s1[i] = s2[i]; } } int main () { char s2[10] = "copy this"; char s1[10]; strcopy(s1, s2); } The above code copies the character from s2 to s1 using the concept of array, in the strcopy function. Implement another function strcopy2 that achieves the same result, but that takes as input pointers to character arrays that is, complete the strcopy2 function in the following code so that the code copies the content of s2 into s1. void strcopy2(char *s1, char *s2) { } int main () { char s2[10] = "copy this"; char s1[10]; strcopy2(s1, s2); }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!