Question: in C language Write the function pstrcat to concatenate a Pascal string and C-string into a C-string. The function arguments are pstr, a char array

in C language
Write the function pstrcat to concatenate a Pascal string and C-string into a C-string. The function arguments are pstr, a char array representing a Pascal string, and cstr, an ordinary Cstring. The return value should be a char * pointing to the new C-string. char * pstrcat(unsigned char pstr[], char *cstr) { Enter your answer here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
