T
Damit geht das ganze hübscher:
Von [url]cppreference.com
[/url]
strncat
Syntax: #include <string.h>
char *strncat( char *str1, const char *str2, size_t count );
The function strncat() concatenates at most count characters of str2 onto str1, adding a null termination. The resulting string is returned.
Related topics:
strcat(), strnchr(), strncmp(), and strncpy().
Hin und wieder mal in die Hilfe schauen, das hilft
(ok, blödes Wortspiel)