mirror of
https://github.com/TheAlgorithms/C
synced 2025-05-14 07:58:04 +03:00
8 lines
101 B
C
8 lines
101 B
C
int rangeBitwiseAnd(int m, int n)
|
|
{
|
|
while (m < n)
|
|
{
|
|
n &= n - 1;
|
|
}
|
|
return n;
|
|
} |