aaa
This commit is contained in:
parent
12e249ae9a
commit
e6774e9e33
2 changed files with 11 additions and 0 deletions
10
filecreation.c
Normal file
10
filecreation.c
Normal 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
1
mathtest.c
Normal file
|
@ -0,0 +1 @@
|
|||
#include <stdio.h>
|
Loading…
Reference in a new issue