Thursday, March 16, 2006

Solve This

if( X )
{
printf("Hello");
}
else
{
printf("World");
}

Question: What should be the value of "X" so that the output is HelloWorld?

No comments: