New Paste :: Recent Pastes:: Add Line Numbers
Return Highest Power of 2 by DELTRON
int highestbit(int x) { int i=1<<7; while (i) { if (x&i) return i; i>>=1;} return 0; }