C/w3school/file.c
2024-03-05 14:19:35 +03:00

12 lines
158 B
C

#include <stdio.h>
int main() {
FILE *fptr;
fptr = fopen("test1.txt", "a");
fprintf(fptr, "\nThis is Working!");
fclose(fptr);
return 0;
}