如题。。。
#include <stdio.h>
#include <string.h>
int main(void)
{
char temp[50],*p;
printf("Please a word:\n");
gets(temp);
p=&temp[strlen(temp)-1];
while(*p)
putchar(*p--);
printf("\n");
return 0;
}
_______________________________________________________
少打一个符号...方法很多,这是其中一个而已..
[[it] 本帖最后由 dsr_dbh 于 2008-10-29 16:04 编辑 [/it]]