#include <stdio.h>
#include <string.h>

int main() {
    char dest[10] = "hi";
    char src[] = "bye";

    strncat(dest, src, 3); // We use 3 because we want to append the first 3 characters of src to dest

    printf("Resulting string: %s\n", dest);



    return 0;
}