#include int main() { char src[] = "hello"; char dest2[5] = "fjff"; int j; j = ft_strlcat(src, dest2, 5); printf("%d %s\n", j, dest2); }