13 lines
170 B
C
13 lines
170 B
C
#include <stdio.h>
|
|
|
|
void main()
|
|
{
|
|
FILE *fp;
|
|
|
|
fp = fopen( "file", "r" );
|
|
if( fp != NULL ) {
|
|
/* rest of code goes here */
|
|
fclose( fp );
|
|
}
|
|
}
|