#include <stdio.h>
#include <string.h>
int main() {
   int len1,len2;
int i;
char name1[20]="Tanishka";
char name2[20]="Kumar";
len1=strlen(name1);
len2=strlen(name2);
for(i=0;i<=len2;i=i+1)
{ name1[len1+i]=name2[i];}
printf("%s",name1);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: