vote up 1 vote down star

Possible Duplicate:
What’s the “condition” in C interview question?

Fill the condition in such a way that it should "hello world"

  if(condition)
      printf("hello");
  else
      printf("world");
flag

80% accept rate
really? it doesn't seem possible. wtf? – spender Sep 2 at 10:16
6  
Exact duplicate: stackoverflow.com/questions/33199/… – Greg Hewgill Sep 2 at 10:18

closed as exact duplicate by Greg Hewgill, Stephan202, sharptooth, Naveen, divo Sep 2 at 10:32

3 Answers

vote up 2 vote down check
if(!printf("hello "))
	printf("hello");
else
	printf("world");

That it?

edit: Damn, too slow. :-)

link|flag
its OK, I accepted your answer over Jon's :) – Prashant Sep 2 at 10:50
vote up 12 vote down

How about:

if (!printf("hello "))
    printf("hello");
else
    printf("world");
link|flag
Well done Jon... Impossible de-impossibled! – spender Sep 2 at 10:17
yes! – lune Sep 2 at 10:18
I am so accustomed to avoiding side-effects in my conditions that this would have completely evaded me. Not a bad thing. – spender Sep 2 at 10:21
vote up 2 vote down
#define else printf(" ");

if (true)
    printf("hello");
else
    printf("world");
link|flag
Doesn't quite answer the question, but it is clever none the less. – Brad Gilbert Sep 2 at 18:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.