I have this string: "101" I want to write it to a file, in C, not as text: "101" and so 8 bits x char. but directly use the string as bits: the bit "1", the bit "0" and the bit "1", so that the file will be of 3 bits.
Is it possibile? I searched on the web and I tried doing this:
char c[25] = "101";
FILE *binFile = fopen("binFile.bin", "wb");
int x = atoi(c);
fwrite(&x, sizeof(x), 1, binFile);
But at the end, when I verify files's bytes, Windows says me that it is 4bytes file! And not 3bits!
How can I do this, if it is possible? Thanks a lot.

WORDis the word here.. en.wikipedia.org/wiki/Word_(computer_architecture) – hydroparadise Nov 6 '12 at 20:36