 char *strcat(char *schar *t)
  char *strcat(char *schar *t)
 String Functions: string.h
  String Functions: string.h
 String Functions: string.h
  String Functions: string.h
Copy the string pointed to by t to that pointed to by s. The return value is simply s (i.e. a pointer to the destination string); this is sometimes convenient in forming more complex expressions, but, more usually, it can be ignored (discarded).