Question: In C++ Define a C-string function void append(const char * v, const char * w, char * buffer) that fills buffer with the characters of
In C++
Define a C-string function void append(const char * v, const char * w, char * buffer) that fills buffer with the characters of C-string v followed by the characters of C-string w. (Don't forget the terminating null character.) You can assume that the function is called with a buffer whose size is at least the sum of the sizes of v and w. Use pointer notation. No square brackets allowed. Driver at http://www.chabotcollege.edu/Faculty/jtraugott/CodeLab/append.cpp The driver outputs buffer after the function is called. Note: the driver prototype for append is missing the const keyword for parameters v and w. You'll need to add those for your version
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
