How to read (input) array of integers from binary file in C++

1 Answer

0 votes
#include <iostream>
#include <fstream>

using std::cout;
using std::endl;
using std::ifstream;

#define SIZE 5

int main()
{
	int arr[SIZE] = { 0, 0, 0, 0, 0 };

	ifstream ifs("d:\\data.bin", std::ios::binary);

	ifs.read(reinterpret_cast<char*>(arr), SIZE * sizeof(int));

	for (int i = 0; i < SIZE; i++) 
		cout << arr[i] << endl;

	return 0;
}


/*
run:

45
8
12
98
875

*/

 



answered Jun 7, 2018 by avibootz

Related questions

1 answer 238 views
1 answer 168 views
1 answer 226 views
1 answer 183 views
1 answer 183 views
1 answer 631 views
...