Ask your own question, for FREE!
Computer Science 6 Online
OpenStudy (anonymous):

Need help programming in C: Write a program the writes several floating-point values to a file in binary. {Use a type other than float.} - look at the size of the file to see if it matches the size and number of floating-point values written.

OpenStudy (anonymous):

Yoo sup finally a C question. In c++ this is trivial, use the iostream library. C, well, still fairly trivial. Use fopen to open a file and pass "b" to open the file in binary, fopen will return the file handle. Then try the write, you'll need that file handle again, try the man pages for more details; http://linux.die.net/man/3/fwrite Now, "use a type other than float." I'm pretty sure this is referring to him wanting you to use a double. I assume it's this because an alternative to using write is using fprintf, and since fprintf is a variadic function the floats will be promoted to doubles (since the types are not prototyped). Check 6.5.2.2 line 6 in the C99 draft if you want to learn more about it. Basically the file size would be 8 bytes, the float would be 4 bytes, and confusion ensues if you are unaware of this weird property.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
Mari103: How to pop out like a Jacc In the box
7 hours ago 0 Replies 0 Medals
Breathless: Spooky witch but cute
14 hours ago 3 Replies 0 Medals
Arriyanalol: help
13 hours ago 10 Replies 2 Medals
Arriyanalol: @tinydinoUwU stop trying to find a argument u blad lil boy
1 day ago 5 Replies 4 Medals
Jaded012023: Please tell me what you all think of this song
16 hours ago 6 Replies 1 Medal
Arriyanalol: bro how
16 hours ago 2 Replies 3 Medals
Arriyanalol: cant wait for the new bluey movie in 2027
1 day ago 12 Replies 2 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!