Would it be possible to print Hello twice using single condition?
Hello
condition
if \"condition\" printf (\"Hello\"); else printf(\"World\");
#include int main() { if(! printf("Hello")) printf ("Hello"); else printf ("World"); return 0; }
Because Printf returns the number of character it has printed successfully.