Re: A89: Re: C -- Boolean logic?


[Prev][Next][Index][Thread]

Re: A89: Re: C -- Boolean logic?




I don't actually know C, but I do know C++ whcich I think would be exactly 
the same.  In C++, only 1 equal sign is the same as a store on the 89.  The 
following are the boolean C++ operators

==     equal to
!=     not equal to
>=    greater than or equal to
<=    less than or equal to
>     greater than
<     less than
&&     and
||     or


Ted


Follow-Ups: