{{keywords>wiki library source code example reference}}
====== BUFSIZ ======
**type Macro**
#include /* including standard library */
//#include /* 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 C Sourcecode Example =====
/*
* BUFSIZ example code
* http://code-reference.com/c/stdio.h/bufsiz
*/
#include /* including standard library */
//#include /* uncomment this for Windows */
int main (void) {
printf ("The maximum size of buffer: %d \n", BUFSIZ );
return 0;
}
==== output for bufsiz example code ====
./bufsiz
The maximum size of buffer: 8192