This question's accepted answer shows how to set a bit in c: How do you set, clear and toggle a single bit in C?
But it is not really said what 'x' is.
Is it counted from left to right or right to left ? Isn't that platform dependent anyway ?
|
This question's accepted answer shows how to set a bit in c: How do you set, clear and toggle a single bit in C? But it is not really said what 'x' is. Is it counted from left to right or right to left ? Isn't that platform dependent anyway ? |
|||||
|
|
The C standard doesn't say how you number the bits you shift. It says that a value will be twice as large for each position you shift it.
On most current machines, this means that |
||||
|
|