Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

nand in cpp

// assuming A and B are boolean expressions NAND is the NOT of an AND so
cond = !(A && B)
// equivalently, in higher version of C++
cond = not(A and B)
 
PREVIOUS NEXT
Tagged: #nand #cpp
ADD COMMENT
Topic
Name
7+1 =