#include <string.h> 
#include <stdio.h>
 
int main() 
{
    char str[50] = "Hello ";
    char str2[50] = "World!";
    
    strncat(str, " Goodbye World!", 5);
    puts(str);
}
