Explain the function used to read and write binary
Answers
Answered by
5
Answer:
⏩⏩
➡➡➡➡➡➡➡➡➡
Writing to a binary file. To write into a binary file, you need to use the function fwrite(). The functions takes four arguments: Address of data to be written in disk, Size of data to be written in disk, number of such type of data and pointer to the file where you want to write.
Answered by
2
Explanation:
Binary files are mostly the .bin files in your computer.
Instead of storing data in plain text, they store it in the binary form (0's and 1's).
They can hold higher amount of data, are not readable easily and provides a better security than text files.
Similar questions