Hi everybody!
Now I'm dealing with binary file handling and I need to read 70 bits into a variable from a file.
As far as I know (correct me please, if I'm wrong), C does not have any variable type that could hold such large data.
(I think) I cannot use a string either as a string terminates with a null character and the binary I read from the file might contain a null character in the middle too.
I could have handled the data as two variables but it will give me a real hard time.
Does somebody have a better idea please?
Thanks in advance.