Urgent!!!
Q5. Implement a C program that includes a function that copies one string into another string. You cannot use the string.h library for this exercise. Use the following function prototype: void copystring(char s1[], char s2[]);
A sample run would be as follows:
Please enter a string: cngcourse
String 1 is copied to String 2
String 1 is cngcourse and String 2 is cngcourse