#include #include void main() { char phrase[64]; puts("Backwardsland Translator"); printf("Type in your phrase:"); gets(phrase); puts("\nHere is the translation:"); puts(strrev(phrase)); }