Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

AND

You are here: irt.org | FOLDOC | AND

<logic> (Or "conjunction") The Boolean function which is true only if all its arguments are true. The truth table for the two argument AND function is:

 A | B | A AND B
 --+---+---------
 F | F |    F
 F | T |    F
 T | F |    F
 T | T |    T

AND is often written as an inverted "V" in texts on logic. In the C programming language it is represented by the && (logical and) operator.

(1997-11-15)

Nearby terms: Analytical Solutions Forum « anchor « ANCP « AND » ANDF » Andorra-I » Andorra Kernel Language

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb