Adobe Interview Question

-- -- void main(){ printf("Two"); } -- -- without touching main function, (allowed to write anything before and after main). modify code such that it will print "One\nTwo\nThree".

Interview Answer

Anonymous

Jan 25, 2016

#include #define printf(p) printf("One\nTwo\nThree\n") int main() { printf("Two"); return 0; }

2