strcat function — Concatenates strings
char* strcat(char* dst, const char* src)
The strcat
function
concatenates src
onto the end of
dst
, overwriting the null byte
that ends dst
. The src
and dst
arrays cannot overlap. The caller must
ensure that dst
points to a
region of memory that is large enough to hold the concatenated
result, including its null terminator.