strcat
Example: strcat | String Manipulation Functions |
Concatenates two strings.
char *strcat( char *to, const char *from );
to | The string at the end of which the from string is concatenated. |
from | The string concatenated to the end of the to string. |
Return Values
Pointer to the concatenated string (null-terminated).