C
This commit is contained in:
12
w3school/file.c
Normal file
12
w3school/file.c
Normal file
@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
|
||||
FILE *fptr;
|
||||
|
||||
fptr = fopen("test1.txt", "a");
|
||||
fprintf(fptr, "\nThis is Working!");
|
||||
fclose(fptr);
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user