Originally posted by 09520434
View Post
int GetBit(int n, int i)
{
return (n>>i)&1;
}
Comment