tb1/tb_asm/c/open_test.c
2012-12-18 21:43:40 -05:00

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;
}