This commit is contained in:
Triggered_Tux 2019-01-06 18:58:47 -05:00
parent 12e249ae9a
commit e6774e9e33
2 changed files with 11 additions and 0 deletions

10
filecreation.c Normal file
View File

@ -0,0 +1,10 @@
#include <stdio.h>
main() {
FILE *fp;
fp = fopen("test.txt", "w+");
fprintf(fp, "This is testing for fprintf...\n");
fputs("This is testing for fputs...\n", fp);
fclose(fp);
}

1
mathtest.c Normal file
View File

@ -0,0 +1 @@
#include <stdio.h>