I would like to create a binary file representing an integer. I think the file should be 4 bytes. I use linux. How to do that? Another question: How do I assign the content of that file to an integer in C?
|
|
In standard C,
This outputs:
|
|||
|
|
|
From the operating system's point of view, all files are binary files. C (and C++) provide a special "text mode" that does stuff like expanding newline characters to newline/carriage-return pairs (on Windows), but the OS doesn't know about this. In a C program, to create a file without this special treatment, use the "b" flag of fopen():
|
||
|
|
|
|
See |
||
|
|
|
|
Open the file for binary read/write. fopen takes a See the fopen page in Wikipedia for the difference between text and binary files as well as a code sample for writing data to a binary file |
|||
|
|
