faster operator

arithmetic operations using bitwise operator will be faster or using arithmetic operator ??

bitwise operators will be faster than arithmetic ones, mostly because the execution cycle of bitwise operations is comparatively less than that of arithmetic operations

also you can go through this link for a better understanding

read here