#include #include int main() { char input[64]; int size,c; printf("Enter a common Earth phrase:"); gets(input); puts("Here is how we say that on Backwards Planet:"); size = strlen(input); for(c=size-1;c>=0;c--) putchar(input[c]); putchar('\n'); return(0); }