vote up 2 vote down star

In my codes, fprintf return successful by returning the number of bytes written in STREAM, but in the actual file the string I put is not there.

flag

57% accept rate

3 Answers

vote up 3 vote down check

The output is probably just buffered. Try closing the file using close() or call fflush() on the stream to force the string to the file.

link|flag
vote up 0 vote down

one thing you haven't mentioned is have you done the flush() on the stream? although it should happen at the moment you're closing the stream.

and the other - you say "in the actual file the string is not there". do you mean you have nothing written in the file, or you have some junk written there? can it be a difference between the ascii and binary stream being used in your case?

link|flag
vote up 0 vote down

yup close() and fflush() is my problem. thanks alot!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.