Use bitwise and (&) when comparing boolean expressions to save one byte.
Example:
if(i^2&k/3) DoSomething;
Really, really useful when combined with the other tips
Use bitwise and (&) when comparing boolean expressions to save one byte.
Example:
if(i^2&k/3) DoSomething;
Really, really useful when combined with the other tips