C/C++ >> What is these statements used for?
Posted by speedy11 on 18:48:00 09-19-2001
The identifier a = 4, b = 6, c = 6 and d = 8.
a) x = ! (a a && b --> a =
e) x = d [ This Message was edited by: speedy11 on 2001-09-19 18:51 ]
Posted by Govtcheez on 20:04:00 09-19-2001
|| is or
&& is and
! is not
= is greater than or equal to
--> is greater than
a && b --> a =
e) x = d a && b --> a = 2
e) x = d