-------- file : timepass.c (start)-----------------
#include
#define print(str) main(){printf(str);}
print("Hello World\n");
-------- file : timepass.c (end)-------------------
---------------------------------------------------
perl timepass.c
---------------------------------------------------
python timepass.c
---------------------------------------------------
gcc timepass.c -o timepass
./timepass
---------------------------------------------------
All output same
Hello World
(P.S : python gives extra line :) )
No comments:
Post a Comment