Dev-C++
新建文本文件,然后重定名为1.c,然后双击打开,打开后的窗口如下所示
在打开后的右边的窗口中输入如下内容
#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;
}
然后按下键盘的f11即可运行,成果如下
char read[256] = {0}; 读出的内容放到这个变量中
char write[] = "this is the content 哈哈哈\n12345";
这个变量的内容写入到文件
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 篇文章
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!