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");
|
1
|
What is the answer to this C question: What's the "condition" so that the following code snippet prints both HelloWorld !
|
|||
|
|
|
|
:-) |
||
|
|
|
|
No love for
|
||
|
|
|
|
Solution 1:
Solution 2 (Only for Unix and Linux):
|
|||
|
|
|
|
If it is on Unix:
Ofcoures that doesn't guarantee the order 0f the prints |
||
|
|
|
|
Without knowing the return value of
|
|||
|
|
|
|
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:
|
||
|
|
|
|
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... :) |
||
|
|
|
|
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. |
||
|
|
|
|
|
||
|
|
|
|
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 ☺ |
||
|
|
|
|
This could work:
This snippet emphasizes the return value of |
||
|
|
|
|
Really lame:
I prefer the use of the comma operator because you don't have to look up the return value of |
|||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
see [http://www.coders2020.com/what-does-printf-return] (matt corrected my =, thanks, C is far away) |
|||
|
|
|
|
The 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. |
|||
|