C/file.c
2023-09-23 22:20:41 +03:00

12 lines
158 B
C
Executable File

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