8 lines
101 B
C
8 lines
101 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
FILE *fh = fopen("output.txt", "w");
|
|
fclose(fh);
|
|
|
|
return 0;
|
|
}
|