#include #include int main() { char dest[100] = "Loin des yeux"; char src[] = ", loin du coeur."; // strcat puts two strings together into one. // The result is in the first string of the two. strcat(dest,src); printf("%s\n", dest); return 0; } /** Output: * Loin des yeux, loin du coeur. */