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");
|
What is the answer to this C question: What's the "condition" so that the following code snippet prints both HelloWorld !
|
|||||||||||||||||||||
|
:-) |
|||
|
|
Really lame:
I prefer the use of the comma operator because you don't have to look up the return value of |
||||
|
|
|
Buckle your seatbelts:
Prints:
Is this what you mean? I doubt it, but at least it's possible. Using |
|||||||||||||
|
|
If it is on Unix:
Ofcoures that doesn't guarantee the order 0f the prints |
|||
|
|
|
This sounds to me like some interview puzzle as there is no point in doing that in a production code.
prints |
|||
|
|
see [http://www.coders2020.com/what-does-printf-return] (matt corrected my =, thanks, C is far away) |
||||
|
|
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. |
|||
|
|
|
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. |
|||||
|
|
The basic answer is that in the ordinary course of events you neither want to execute both the statements in the 'if' block and the 'else' block in a single pass through the code (why bother with the condition if you do) nor can you execute both sets of statements without jumping through grotesque hoops. Some grotesque hoops - evil code!
Of course, it is a plain abuse of (any) language because it is equivalent to:
However, it might achieve what the question is asking. If you have to execute both blocks whether the condition is true or false, then things get a bit trickier.
|
|||||||||
|
|
So... you want to execute the code inside the if block... and the code inside of the else block... of the same if/else statement? Then... you should get rid of the else and stick taht code in the if.
The else statement is designed to execute only if the if statement is not executed and vice-versa, that is the whole point. This is an odd question... |
|||
|
|
|
Comment the "else" ;)
|
|||
|
|
|
Without knowing the return value of
|
||||
|
|
|
|||
|
|
This could work:
This snippet emphasizes the return value of |
|||
|
|
|
No love for
|
|||
|
|
|
Just put the code before or after the if..else block. Alternatively, if you have an "if, else if, else" block where you want to execute code in some (but not all) branches, just put it in a separate function and call that function within each block. |
|||
|
|
|
Solution 1:
Solution 2 (Only for Unix and Linux):
|
||||
|
|
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... :) |
|||
|
|
|
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:
|
|||
|
|
|
Dont use an if else block then. EDIT to Comment. It might then mean that the code be in both blocks, or before/after the block if it is required to run in both cases. |
|||
|
|
use a goto, one of the single most underused keywords of our day |
|||||||
|
|
Cheeting with an empty else statement:
If you don't like the fact that else; is actually an empty else statement try this:
|
||||
|
|
|
Two possible Solutions without using printf statements :- First :-
Second
|
|||
|
|
|
The condition to this question is:
|
|||||
|
|