|
|
|
|
|
by messe
1076 days ago
|
|
Not the commenter you're replying to, but I suspect what they mean is that the C memory model is byte-addressable not bit-addressable. You can't point/refer to a specific bit in memory, instead you have to first read the byte and then select an individual bit using bitwise operations, much like most modern processors. |
|
C makes no assumptions about the size of a byte