10 lines
129 B
C
10 lines
129 B
C
|
#include <stdio.h>
|
||
|
int main()
|
||
|
{
|
||
|
FILE *a = fopen("good.c", "r");
|
||
|
if (!a)
|
||
|
return 0;
|
||
|
fclose(a);
|
||
|
return 0;
|
||
|
}
|