extract data from it.

I have a huge file which contain characters like
Ä/ºÞÃ5€hCƒ3
I need to extract the data that stored in it.. please give valuable suggestion.
http://cplusplus.com/reference/iostream/ifstream/

1
2
3
4
5
6
std::ifstream ifs("my_data_file.dat", std::ios_base::binary);

ifs.read(...);
// or
ifs.get(ch);
// etc... 
Topic archived. No new replies allowed.