Question: C++ language Write a function stringCopy() that takes two C-strings, t and s, copy s into t, then return the resulting string t. In other
C++ language
Write a function stringCopy() that takes two C-strings, t and s, copy s into t, then return the resulting string t. In other words, it works exactly like the C- string library function strcpy(). Use all pointer notation and direct pointer access to move down the strings. Do not write any comments in your code. You may not use any C-string library functions for this.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
