#include <string.h>
char *strncat(char *p, const char *q, size_t n);
strncat() appends string q to string p. If q contains more than n characters, only the first n characters of q are appended to p. The two strings and the result all are zero-terminated.
p