#include<stdio.h>
#include<string.h>
void main()
{
char a[50],b[50];
printf("\n Enter the first string:");
scanf("%s",&a);
printf("\n Enter the second string:");
scanf("%s",&b);
printf("\n The String Reverse is %s",strrev(a));
printf("\n The String Concatenation is %s",strcat(a,b));
}
To embed this project on your website, copy the following code and paste it into your website's HTML: