I need to implement an efficient bitmap in C. From what I saw, C does not support this, so you can use an array of integers (on one site I was looking at), and then use the transition to access individual bits. Would it be simple to declare the bool array the same, or is it less memory efficient?
source share