<b>char *strcat(char *s, char *t)</b>




Document: The C Standard Library

next int strcmp(char *schar *t)
up String Functions: string.h
gif char *strcpy(char *schar *t)

char *strcat(char *s, char *t)

Concatenate the strings pointed at by s and t; the result is pointed to by s. That is, in effect, the characters from string t are added on at the end of string s. The return value is again simply s.



McMullin@eeng.dcu.ie
Fri Mar 29 14:35:38 GMT 1996