Programming Reference/Librarys
Question & Answer
Q&A is closed
type Macro
#include <stdio.h> /* including standard library */ //#include <windows.h> /* uncomment this for Windows */ BUFSIZ
The value for BUFSIZ should normally be 256 KB, 512 KB or 4096 KB. This depends on the system and the compiler.
/* * BUFSIZ example code * http://code-reference.com/c/stdio.h/bufsiz */ #include <stdio.h> /* including standard library */ //#include <windows.h> /* uncomment this for Windows */ int main (void) { printf ("The maximum size of buffer: %d \n", BUFSIZ ); return 0; }
./bufsiz The maximum size of buffer: 8192