#include <stdio.h> int main() { char st[1000]={0}; int i,j,len; gets(st); len=strlen(st); for(i=len-1;i>=0;i--) { if(st[i]==' ') { ...