Frage im Vorstellungsgespräch bei Adobe

-- -- 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".

Antwort im Vorstellungsgespräch

Anonym

25. Jan. 2016

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

2