#include <stdio.h>
#include <string.h>
int main() {
char name[10]="Tanishka";
char name1[10];
int i,len1;
len1=strlen(name);
for(i=0;i<=len1;i=i+1)
{ name1[i]=name[len1-i-1];}
printf("%s",name1);}
To embed this project on your website, copy the following code and paste it into your website's HTML: