Closed chaiken closed 1 year ago
On p. 353 of the first printing,
void fclose(FILE* file)
should instead be
int fclose(FILE *file)
Either is correct. It's a matter of style where you put the asterisk 🙂
On p. 353 of the first printing,
void fclose(FILE* file)
should instead be
int fclose(FILE *file)