Loading...
Select Version
&pagelevel(4)&pagelevel
Syntax | #include <string.h> char *strcat(char *s1, const char *s2); |
Description strcat()
appends a copy of the string s2 to the end of string s1 and returns a pointer to s1.
The terminating null byte ( | |
Return val. Notes | Pointer to the result string s1. Strings terminated with the null byte (
The behavior is undefined if memory areas overlap. |
See also |
|