8 lines
117 B
C
8 lines
117 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
printf( "The number of files closed is %d\n",
|
||
|
fcloseall() );
|
||
|
}
|