C examples for stdio.h:FOPEN_MAX
constant
<cstdio> <stdio.h>
This macro constant represents the maximum number of files that can be opened at the same time.
#include <stdio.h> int main()//from w ww . j a v a 2 s. c o m { printf(" %u \n", FOPEN_MAX); return 0; }