vote up 6 vote down star
1

What is the answer to this C question:

What's the "condition" so that the following code snippet prints both HelloWorld !

if  "condition"
    printf ("Hello");
else
    printf("World");
flag

80% accept rate

17 Answers

vote up 29 vote down check
if ( printf("Hello") == 0 )
    printf ("Hello");
else
    printf ("World");

:-)

link|flag
vote up 0 vote down

No love for exit?

if(printf("HelloWorld"), exit(0), "ByeBye") 
    printf ("Hello");
else
    printf ("World");
link|flag
vote up 1 vote down

Solution 1:

int main(int argc, char* argv[])
{   
    if( argc == 2 || main( 2, NULL ) )
    {
    	printf("Hello ");	
    }
    else
    {
    	printf("World\n");
    }
    return 0;
}

Solution 2 (Only for Unix and Linux):

int main(int argc, char* argv[])
{   
    if( !fork() )
    {
    	printf("Hello ");	
    }
    else
    {
    	printf("World\n");
    }
    return 0;
}
link|flag
vote up 4 vote down

If it is on Unix:

if  (fork())
    printf ("Hello");
else
    printf("World");

Ofcoures that doesn't guarantee the order 0f the prints

link|flag
vote up 1 vote down

Without knowing the return value of printf off the top of your head:

if (printf("Hello") && 0)
    printf("Hello");
else
    printf("World");
link|flag
vote up 0 vote down

Very interesting guys, thanks for the answers. I never would have thought about putting the print statement inside the if condition.

Here's the Java equivalent:

	if ( System.out.printf("Hello").equals("") )
		System.out.printf("Hello");
	else
		System.out.printf("World");
link|flag
vote up 0 vote down

Greg wrote:

No matter what you use for condition, that snippet will either print "Hello", or "World", but never both.

Well, this isn't true, but why you would want it to print both, I can't find a use case for. It's defeating the point of having an if statement. The likely "real" solution is to not use an if at all. Silly interview questions... :)

link|flag
vote up 4 vote down
#define CONDITION (0) if (0) {} else

or some such.

If you see such a question on an interview, run away as fast as you can! The team that asks such questions is bound to be unhealthy.

Edit - I forgot to clarify - this relies on "else" being matched with closest open "if", and on the fact that it's written as "if CONDITION" rather than if (CONDITION) - parenthesis would make the puzzle unsolvable.

link|flag
vote up 0 vote down
if (printf("Hello") < 1)
    printf("Hello");
else
    printf("World");
link|flag
vote up 1 vote down

If this a serious question, Greg is right: if..else really means either..or.

If this is more a rhetorical question: I guess that you could turn "condition" into something - depending on Operating Environment, C Compiler, Library etc. - into something that causes a Buffer Overflow, which you could then use to modify the return address to execute both branches. But that would just be a really fancy GOTO ☺

link|flag
vote up 1 vote down

This could work:

if (printf("Hello") - strlen("Hello"))
    printf("Hello")
else
    printf("World")

This snippet emphasizes the return value of printf: The number of characters printed.

link|flag
vote up 8 vote down
"condition" === (printf("Hello"), 0)

Really lame:

int main() {
    if  (printf("Hello"), 0)
        printf ("Hello");
    else
        printf("World");
}

I prefer the use of the comma operator because you don't have to look up the return value of printf in order to know what the conditional does. This increases readability and maintainability. :-)

link|flag
vote up 0 vote down
if  (true) printf ("Hello"); if (false)
    printf ("Hello");
else
    printf("World");
link|flag
vote up 1 vote down

http://www.geekinterview.com/question_details/65997

link|flag
vote up 0 vote down
if(printf("Hello") == 1)
    printf("Hello")
else
    printf("World")
link|flag
vote up 4 vote down
if ( printf("Hello")==0)

see [http://www.coders2020.com/what-does-printf-return]

(matt corrected my =, thanks, C is far away)

link|flag
vote up 1 vote down

The if statement executes one or the other of the controlled statements (both printf in your example). No matter what you use for condition, that snippet will either print "Hello", or "World", but never both.

Edit: Okay, so it's a trick question and you can put whatever you like in the condition (including a call to an entire other function that does anything you want). But that's hardly interesting. I can't believe I got downmodded for giving a correct answer.

link|flag
I can't believe it either, whoever did it in my view was petty/lame. So here is some rep back :) There shouldn't be negative penalties for not being "clever" enough to see the solution and posting what you genuinely thought was correct. – freespace Sep 22 '08 at 13:39

Your Answer

Get an OpenID
or

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