mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-07 21:01:42 +00:00
10 lines
177 B
C
10 lines
177 B
C
#include <stdio.h>
|
|
int main()
|
|
{
|
|
FILE *f = fopen("/tmp/fffffffffffffile.txt", "w");
|
|
if (f == NULL) {
|
|
return 1;
|
|
}
|
|
fprintf(f, "%s", "test");
|
|
return 0;
|
|
} |