🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

building ,extracting binary files in c Help

Started by
0 comments, last by jakeblues 22 years, 8 months ago
can anyone help me out i want to figure out how to build a program to build and extract binary files i have several books but none of them really touch the topic at all is it that difficult? can someone give me an example i know some of you are excellent programmers but i am stumped help me ,help me pease!!
help me ,help me pease!!
Advertisement
fopen(FILE, filename, "b**");

where ** are your other options for opening like read only and stuff...
that will open the binary file... and i believe to read from it use fread()
and fgets().... and fwrite() to write to the file... its all simple c... but my referance has gone missing and i forget...

Edited by - DeeK_2k on October 17, 2001 5:30:27 PM

This topic is closed to new replies.

Advertisement