hafees
In the zone
thanx tuxfan
Here is another puzzle. what will be the output of the program and explain why?
(this puzzle is for beginners. so pls dont post it directly. pm me the answer)
Here is another puzzle. what will be the output of the program and explain why?
Code:
int main()
{
int x=10,y=10;
if(x++ < 10 && y++<10)
printf("condition true");
printf("x=%d \t y=%d",x,y);
return 0;
}