 int strcmp(char *schar *t)
  int strcmp(char *schar *t)
 String Functions: string.h
  String Functions: string.h
 char *strcpy(char *schar *t)
  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.