Problem Description
将一个字符串str的内容颠倒过来,并输出。str的长度不超过100个字符。
Input
输入包括一行。
第一行输入的字符串。
Output
输出转换好的逆序字符串。
Sample Input
I am a student
Sample Output
tneduts a ma I
Hint
Source
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char s[110];
int i,l;
gets(s);
l=strlen(s);
for(i=l-1; i>=0; i--)printf("%c",s[i]);
printf("\n");
return 0;
}