Give a oneline C expression to test whether a number is a power of 2?
if (x & (x-1)) // false only if x is a power of 2