A
Adee
Problem is :
let int a=5,b=16,c=7;
if(a<b<c)
{
printf("C is greater %d", c);
}
in above case still this statement executed. Any one explain the reason !
let int a=5,b=16,c=7;
if(a<b<c)
{
printf("C is greater %d", c);
}
in above case still this statement executed. Any one explain the reason !