正常写法
#include <stdio.h>
int main()
{
char str[100]="\0";
char temp[20]="\0";
int idx=0,i=0;
gets(str);
while(1)
{
if(str[i]=='\0'||str[i]==' ')
{
while(idx)
{
idx--;
printf("%c",temp[idx]);
}
printf("\n");
if(str[i]=='\0')
break;
}
else temp[idx++]=str[i];
i++;
}
return 0;
}