Saturday, December 30, 2006

Simple One

Consider the following program
#include
void main()
{
if(.....)
printf("AB");
else
printf("C");
}
Q: fill in the blank within if condition so that o/p is ABC

here is ans

if(!printf("AB"))
------
else
----


:)

No comments: