17 Apr
2014
17 Apr
'14
10:56 a.m.
On 4/17/14, James Cloos <cloos@jhcloos.com> wrote:
WDS> If x and y both are unsigned integers, and we want to tell whether WDS> (x>0 and y>0), WDS> then how can we do it?
In a language with a logical AND,
x AND y is true iff both are > 0.
--at least with C's meaning of AND, 1 AND 2 = 0, a counterexample.