blob: 27d56ea1cd85b15a8013d25d2d6f6ecebc8541b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <stdio.h>
int main() {
FILE* f1 = fopen("s", "r");
if (f1 == NULL) {
printf("file 's' not found!\n");
}
FILE* f2 = fopen("", "r");
if (f2 == NULL) {
printf("file '' not found!\n");
}
return 0;
}
|