Would it be possible to print Hello twice using single condition?
Hello
condition
if \"condition\" printf (\"Hello\"); else printf(\"World\");
Without knowing the return value of printf off the top of your head:
printf
if (printf("Hello") && 0) printf("Hello"); else printf("World");