I'm trying to squeeze as much out of my memory as possible.
I have a matrix of 4.9999995e13 ints but they only need to be true or false - basically I only need one bit of storage for each of these ints.
I understand that there are no single bit types in C (maybe someone can explain why, to me), and I also know that if a short short int existed it would be 1 byte, same as char. However all of the logical operations in C return ints (as well as a few other functions).
So my questions are:
- Is there some way of making a
short short intexist? - If I was to use
charinstead, would I have performance decrease because of all the casting tointthat would have to be done? - Is there another way that I'm missing?
Just in-case it's relevant, I am compiling with GCC for C99.
Thanks.
EDIT I've just seen on this wikipedia page that there is a _Bool type, is this actually standard?

int? – aardvarkk Jul 14 '11 at 17:56charas a bitfield underlying type in C is implementation defined (which is why I didn't post it as an answer, because I don't feel like creating 32 bitfields for unsigned int now), but works for GCC. – Johannes Schaub - litb Jul 14 '11 at 17:59