📅  最后修改于: 2022-03-11 15:04:33.850000             🧑  作者: Mango
#include
#include
int main(void) {
int n,m,j;
char i,t[n],d[n];
printf("enter the first word :");
gets(t);
n=strlen(t);
for(j=n-1;j>=0;j--){
printf("%c",t[j]);
}
return 0;
}