Possible Duplicates:
Stupid Question Regarding If-Else's Simultaneous Execution in C++ or C
Is it possble to execute both if and else part of an if — else control statement ?
Hello everyone.. I had a question in an interview like this which i couldn't answer. Consider Following code block. Assume necessary header files.
if(.......)
{
printf("hello");
}
else
{
printf("world");
}
without moving/adding any code & without use of additional printing statements bring output as "Hello world"..You have to write the missing condition in if statement.. is it possible to execute both blocks by some condition?? Please help
setjump(). It's possible that they expected that solution. I'm not sure, but will a forked process print to the same console? – ruslik Oct 21 '10 at 14:19printf, whether they're statements or just expressions. Also the text "is it possible to execute both blocks by some condition" is a dupe. As against that, making this a completely different question, the requested output is "Hello world" (note capital H and space), suggesting that the first block should not be executed. Also thefork()solution doesn't order the blocks, they could run in either order or simultaneously. – Steve Jessop Oct 21 '10 at 14:38if(fork() ? (sleep(1), 0) : 1) {. The sleep ensures the correct order. – jdizzle Oct 21 '10 at 16:04