<b>char *strcat(char *s, char *t)</b>
Document: The C Standard Library
int strcmp(char *schar *t)
String Functions: string.h
char *strcpy(char *schar *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