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
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