C中将格式化数据写入到文件中操作

#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
 FILE* file = fopen("C:\\Users\\Administrator\\Desktop\\c.txt", "r");

 char str[11]; //若果你开辟了10个空间,就只能放是10个,多出的会放在其它的地方,但是会内存泄漏。
 memset(str, 0, 10); //申请的空间要首先进行初始化,否则会有意向不到错误
 //cout << str << endl;
 cout << sizeof(str)/sizeof(*str) << endl;
 cout <<strlen(str) << endl;
// int a=fscanf(stdin, "%s", str);//从标准输入流中获取数据
 int a = fscanf(file, "%s", str);
 cout << sizeof(str) / sizeof(*str) << endl;
 cout << strlen(str) << endl;
 if (a)
 {
  cout << a << endl;
  cout << str << endl;
 }
 FILE* file2 = fopen("C:\\Users\\Administrator\\Desktop\\d.txt", "w");
 fprintf(file2, "name:%s,age:%d", "yujianhui",10);
 fclose(file);
 fclose(file2);
 system("pause");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值