Pergunta de entrevista da empresa 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".

Resposta da entrevista

Sigiloso

25 de jan. de 2016

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

2