欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C/C++写入二进制文件

程序员文章站 2022-06-12 16:22:15
...

C/C++写入二进制文件

#include <iostream>
#include <Windows.h>
#include <fstream>

using namespace std;

int main(void){
	
	int age;
	ofstream Two;
	//创建一个二进制文本文件
	Two.open("hello.dat", ios::out | ios::trunc | ios::binary);
	cout << "请输入年龄:";
	cin >> age;
	Two.write((char*)&age,sizeof(age));
	
	//有开启就有关闭
	Two.close();	//关闭
system("pause");
return 0;
}

需要查看的话,去nopate++查看,需要下载插件。

相关标签: 笔记