本文主要是介绍fopen和fprintf函数的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include<stdio.h>
#include<string>using namespace std;
#define F_PATH "E:\\梁栋凯\\example\\fopen\\fopen\\liang.txt"int main(void)
{FILE *fp=NULL; //创建文件指针fp=fopen(F_PATH,"w+");if(NULL==fp){return -1; //打开空文件指针要返回错误代码}int temp=296810052;string s = "liang 123";fprintf(fp," %s %d %f %c " ,"liang 123",temp,3.1415926 ,'L');fclose(fp);fp=NULL; //关闭文件后需要指向空,否则会指向原打开文件地址return 0;
}
这篇关于fopen和fprintf函数的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!