about Few things i know....
Look at the code below.void main(){ if(X){ printf("Hello");}else{ printf(" World");}}What should X be replaced with inorder to get the output as "Hello World"?
main(){if(printf("Hello") -5 ){printf("Hello");}else{printf(" World");}}
int main(){ if(!(printf("Hello"))) { printf("Hello"); } else { printf(" World"); }return 0;}:)
both of you are correct .. congrats .. :)
main()
ReplyDelete{
if(printf("Hello") -5 )
{
printf("Hello");
}
else
{
printf(" World");
}
}
int main()
ReplyDelete{
if(!(printf("Hello")))
{
printf("Hello");
}
else
{
printf(" World");
}
return 0;
}
:)
both of you are correct .. congrats .. :)
ReplyDelete