> Andrew Warren wrote: > > Again, I didn't mean for the issue to be ANSI compliance. Arrays > of bits (and/or pointers to bits) are VERY commonly used in PIC > applications; a compiler that supports single-bit variables should > also support arrays of, or pointers to, those variables. > Andy, K&R only define bit fields inside of struct's, as some kind of redefinition of an int's, and state: "They are not arrays, and they do not have addresses, so the & operator cannot be applied to them" which means also that there are no pointers to bits. Of course, these features would be very nice to have, but they would be an unportable extension of C. Kind regards, Wolfgang