11 lines
171 B
C
11 lines
171 B
C
#include <stdio.h>
|
|
|
|
void main()
|
|
{
|
|
FILE *stream;
|
|
|
|
stream = fopen( "file", "r" );
|
|
printf( "File number is %d\n", fileno( stream ) );
|
|
fclose( stream );
|
|
}
|