Answers for "nand in cpp"

C++
0

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)
Posted by: Guest on March-31-2022

Browse Popular Code Answers by Language