Example for chapter 2 Buffered I/O

This commit is contained in:
Fabio Scotto di Santolo
2025-06-27 13:53:36 +02:00
parent 37ccfc7367
commit b233d9034e
2 changed files with 47 additions and 0 deletions

7
chp3/input.c Normal file
View File

@@ -0,0 +1,7 @@
#include<stdio.h>
#include <limits.h>
int main(void) {
printf("Limit buffer size is %u bytes.\n", LINE_MAX);
printf("Buffer size is %u bytes.\n", BUFSIZ);
}