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