I want to make an array of int bit fields where each int has one bit, meaning that all of the numbers will be 1 or 0, how can I code that?
I tried
struct bitarr {
int arr : 1[14];
};
but that doesn't compile and I don't think that this is the way