Would it be possible to print Hello twice using single condition?
Hello
condition
if \"condition\" printf (\"Hello\"); else printf(\"World\");
if (printf("hello") & 0) { printf("hello"); } else { printf("world");
No need to bother about the return value of printf.