C/C++ langauge odd and even numbers - Part4
Mussab Obeado Mussab Obeado
5.09K subscribers
2,615 views
0

 Published On Jul 9, 2021

we apply this defination in C Language:
A number is odd if it has 1 as its rightmost bit in bitwise representation. It is even if it has 0 as its rightmost bit in bitwise representation. This can be found by using bitwise AND on the number and 1. If the output obtained is 0, then the number is even and if the output obtained is 1, then the number is odd.

show more

Share/Embed