diff --git a/filecreation.c b/filecreation.c new file mode 100644 index 0000000..e206bd4 --- /dev/null +++ b/filecreation.c @@ -0,0 +1,10 @@ +#include + +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); +} \ No newline at end of file diff --git a/mathtest.c b/mathtest.c new file mode 100644 index 0000000..6724ae3 --- /dev/null +++ b/mathtest.c @@ -0,0 +1 @@ +#include \ No newline at end of file