#include #include int main(void) { char s[10] = "Hallo"; strcat_s(s, sizeof s, " daar"); printf("%s\n", s); getchar(); return 0; }