Answers for "c bitwise arithmetic"

C
0

bitshift c

i = 14; // Bit pattern 00001110
j = i >> 1; // here we have the bit pattern shifted by 1 thus we get 00000111 = 7 which is 14/2
Posted by: Guest on January-04-2021

Code answers related to "C"

Browse Popular Code Answers by Language