-4
votes
What’s the fastest way to divide an integer by 3?
There's no way to do this that I can tell.
However if you wanted to divide by a power of 2 (and didn't care about the remainder) you could do
int x = n >> 2; // divide …
