1标准IO 所用函数为fopen,fclose,fwrite,fread,以及fseek等,优点是效率更高。
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 int main()
5 {
6 //FILE *fp = fopen("hello.c","r"); //用只读的方式打开hello.c
7 FILE *fp = fopen("hello.c","w+"); //读写方式打开,如果存在,清空
文件,如果不存在,创建文件
8 if(NULL == fp)
9 {
10 perror("fopen");
11 exit(1);
12 }
13 char *s = "this is test..";
14 size_t ret = fwrite(s,1,strlen(s),fp)