-- -- 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".
Anónimo
#include #define printf(p) printf("One\nTwo\nThree\n") int main() { printf("Two"); return 0; }