#include<stdio.h>
#include<string.h>
int main()
{
    char str1[20],str2[20];
    printf("enter string1\n");
    scanf("%s",str1);
    printf("enter string2\n");
    scanf("%s",str2);
    printf("the string is %s %s\n",str1,str2);
    return 0;
}
}

Embed on website

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