![]() |
VOOZH | about |
C strcat() function appends the string pointed to by src to the end of the string pointed to by dest. It will append a copy of the source string in the destination string. plus a terminating Null character. The initial character of the string(src) overwrites the Null-character present at the end of the string(dest).
It is a predefined string handling function under string library <string.h> in c and <cstring> in C++.
Syntax:
char *strcat(char *dest, const char *src);
Parameters: The method accepts the following parameters:
Return value:
Examples:
Input: src = "ForGeeks" dest = "Geeks" Output: "GeeksForGeeks" Input: src = "World" dest = "Hello " Output: "Hello World"
Below is the C/C++ program to implement the above approach:
GeeksForGeeks