So, I know that this question has been asked many times. I apologize for the repeated task, but I did not ask any questions asked earlier, with my specific circumstances.
So, I have a program that reads a hex file, modifies it and saves the modified hex to std :: string. So for example, how can I write this to a file
std::string wut="b6306edf953a6ac8d17d70bda3e93f2a3816eac333d1ac78";
and get its value
.0n..:j..}p...?*8...3..x
in the output file?
I would prefer not to use sprintf, but I think if necessary, I will do what I should.
Thanks everyone ~ P
source
share