Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a file with hex numbers as follows:

00042980 
00020000 
00020000 
00028000 
00020008 
00021000 
01028000 
00000000 
00000000 

In this same exact fashion.
How do I read this file in binary in C++?

share|improve this question

1 Answer

You can use the std::hex manipulator:

#include <fstream>
#include <iostream>

using std::cout;
using std::hex;
using std::ifstream;

int main() {
    ifstream input("file");
    int data;
    while(input >> hex >> data) {
        cout << data << std::endl;
    }
}
share|improve this answer
thank you!i'll try it out.. – cutesue Mar 10 '12 at 20:49
3  
Be sure to select this as the best answer if you find the solution effective. – David Young Mar 10 '12 at 20:51
1  
+1 for all-around good C++ practice (proper using directives, safe I/O loop, etc.)! – André Caron Mar 10 '12 at 20:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.