12 lines
140 B
C
12 lines
140 B
C
#include <stdio.h>
|
|
|
|
void main()
|
|
{
|
|
FILE *fp;
|
|
|
|
fp = fopen( "stdio.h", "r" );
|
|
if( fp != NULL ) {
|
|
fclose( fp );
|
|
}
|
|
}
|