mirror of
https://github.com/deater/tb1.git
synced 2025-01-21 08:29:47 +00:00
13 lines
186 B
C
13 lines
186 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
FILE *fff;
|
|
|
|
fff=fopen("bob","w");
|
|
if (fff!=NULL) {
|
|
fprintf(fff,"HELLO\n");
|
|
fclose(fff);
|
|
}
|
|
return 0;
|
|
}
|