Write a C functionthat appends one stringto another. Functionname:strinqAppend Description:Appends the contents ofa source stringto a destinationstring. The nullterminator ofthe destinationstringshould be replaced bythe first character ofthe source string. The destinationstring should be properlynull-terminated. Input parameters:* source, a pointer to the source string. * dest, a pointer to the destinationstring. Returns: No value is returned. void stringAppend(char *source, char *dest);

Write a C function that appends one string to another. Function name: strinqAppend Description: Appe

  • 1.
    Write a Cfunctionthat appends one stringto another. Functionname:strinqAppend Description:Appends the contents ofa source stringto a destinationstring. The nullterminator ofthe destinationstringshould be replaced bythe first character ofthe source string. The destinationstring should be properlynull-terminated. Input parameters:* source, a pointer to the source string. * dest, a pointer to the destinationstring. Returns: No value is returned. void stringAppend(char *source, char *dest);