把一个单词读入一个字符数组中,然后倒序打印该单词。
#include<stdio.h>
int main(){
int i;
char word[30];
printf("Please enter the words: ");
scanf("%s", &word);
printf("The words you input is %s\n",word);
for(i = strlen(word) - 1; i >= 0; i--)
/* 循环的起始位置是单词长度-1,结束位置是0,strlen返回有效长度值,即不包括'\0' */
printf("%c", word[i]);
return 0;
}