> C++ programming help?

C++ programming help?

Posted at: 2014-12-18 
bool will output either true or false.

a <= b. That is true.

a >= d. that is false.

so now you're comparing true is not equal to false.

that true.

What's the output on screen for this part of a program ??

int a=9,b=30,c=89,d=35; bool e,f ;

f= a<=b!=a>=d;

cout<
I need a full illustration for the output, please.