I need to implement a very large matrix, say NxN in Standard C. The matrix must store a truth table, that is
matrix[i][j] = [true|false] I know I could simply use a int matrix, or boolean type if using C99, but was looking for the most lightweight solution in terms of memory.
unsigned longs?