Code golf: Reverse quine
code-golf
Solution
C : 0 chars
``
Ref: http://www0.us.ioccc.org/years.html#1994_smr
Problem
Write a program that outputs the reverse of its source code as a string. If the source is ``` abcd efg ``` (i.e., the C string `"abcd\nefg"`) Then the output should be ``` gfe dcba ``` (i.e., the C string `"gfe\ndcba"`) Bonus points for using esoteric languages such as brainf*ck. *EDIT:** Removed the unnecessary \0 characters.+