strcat()

Syntax
  #include <string.h>

  
  char *strcat(char *p, const char *q);

  
Description

strcat() appends string q to the end of string p. Both strings and the resulting concatenation are zero-terminated.

Return

p

See also

memcpy() and memmove(),

strcpy(),

strncat(), and

strncpy()