Friday, May 16, 2008

the output will be HelloWorld.

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

what should be the condition,
so the output will be HelloWorld.



#include
main()
{
if(printf("hello")!=0)
printf("hello");
else
printf("world");
}

No comments:

Contributors