C语言创建读写文本文件
在学习c语言的过程中,会学到相关的文件操作,你可以通过如下的内容学会简单的文件的打开,读写和关闭文件的操作
操作方法
- 01
新建文本文件,然后重命名为1.c,然后双击打开,打开后的窗口如下所示
- 02
在打开后的右边的窗口中输入如下内容 #include<stdio.h> int main(void) { char read[256] = {0}; char write[] = "this is the content 哈哈哈\n12345"; FILE *f = fopen("1.txt","w+"); fwrite(write,1,sizeof(write),f); fseek(f,0,0); fread(read,1,sizeof(write),f); fclose(f); printf("%s",read); return 0; }
- 03
然后按下键盘的f11即可运行,结果如下
- 04
char read[256] = {0}; 读出的内容放到这个变量中 char write[] = "this is the content 哈哈哈\n12345"; 这个变量的内容写入到文件
- 05
FILE *f = fopen("1.txt","w+"); 打开文件 fwrite(write,1,sizeof(write),f);将write中的内容写入文件 fseek(f,0,0);文件指针偏移到文件头 fread(read,1,sizeof(write),f);从文件头开始读出文件内容 fclose(f);关闭文件 printf("%s",read);打印读出的内容
赞 (0)