-4

what different between fflush(FILE* stream) and fflush(NULL) at c? I know that fflush(NULL) flush all the stream what is fflush(FILE* stream) do?

1 Answers1

0

You can get the details from “man fflush”(“fflush() forces a write of all user-space buffered data for the given output or update stream via the stream's underlying write function ”from man )

TBFire
  • 1
  • 2