include<stdio.h>#include "string.h"int main(){char *arr1,arr2[]="_Good Day";int len=strlen("Hello World");arr1=(char*)malloc(sizeof(char)*len);strcpy(arr1,"Hello World");arr1=(char*)realloc(arr1,len+strlen(arr2));strcat(arr1,arr2);printf("%s",arr1);return 0...