FOPEN_MAX - C stdio.h

C examples for stdio.h:FOPEN_MAX

Type

constant

From


<cstdio>
<stdio.h>

Description

This macro constant represents the maximum number of files that can be opened at the same time.

Demo Code


#include <stdio.h>

int main()//from  w  ww  . j  a v  a 2 s.  c  o m
{

    printf(" %u \n", FOPEN_MAX);

    return 0;
}

Related Tutorials