Hi Charles,
I do not know much about logical and bitwise operators, so I am not sure how to interpret my results. I tried this little code:
int r1,r2,r3,r4,r5,r6
int a=60, b=13
r1 = (a and b) 'bitwise and
r2 = (a & b) 'bitwise and
r3 = (60 && 13) 'Logical and
r4 = (a&b) 'addition?
r5 = (a& b) 'bitwise and
r6 = (a &b) 'address?
print r1 ", " r2 ", " r3 ", " r4 ", " r5 ", " r6
r4 seems to be an addition and r6 seems to point to an address. Are these the expected results?
Roland