Additionally, the standard I/O library is a convenient interface. You could do the buffering yourself by allocating a large array, copying the 4 bytes to it one at a time, and writing it when it gets full, but it is much easier to simply call fwrite() and to let the standard I/O library do it for you.
Grading -- you had to mention buffering and make some mention of convenience to get full credit. Buffering was 5 points (and you had to give a decent explanation, not simply a mention of buffering), and convenience was 2 points.