Answers for "bitwise not"

1

bitwise operator

bitwise complement of N = ~N (represented in 2's complement form)
2'complement of ~N= -(~(~N)+1) = -(N+1)
Posted by: Guest on September-24-2020
0

bitwise not

Copy CodeNOT 10110101 (decimal 181)
    -------- =
    01001010 (decimal 74)
Posted by: Guest on May-24-2021

Browse Popular Code Answers by Language