I want to know if a number ends with some predefined bit patterns.
for example i want to know if a number N end with B
where, N is any number and B is also any number
for example
if N = 01011100
B = 100 then this C++ function should return 1 here in this case 1
if N = 01011100
B = 101 then this function should return 0
:)
