|
||
char *strcat( char *s1, char *s2 )
char *s1; /* a string */ char *s2; /* a string */
|
|
|
Synopsis |
#include "string.h"
The strcat function concatenates string s2 onto the end of s1.
|
|
Parameters |
s1 and s2 are null-terminated strings.
|
|
Return Value |
strcat returns s1 .
|
|
See Also |
|
|
|
|