Hi,
I have a text file which has a line of hex values in the following format
AC FF 1A C5............. ....FD (Total of 15 hex values) - called hex.txt
I need to create another file in C++, which would convert the hex.txt into decimal values keeping the format unchanged. The resulting file (dec.txt) should be something like
172 255 26 197...........2 53
I cant seem to start in terms of logic. If someone who has worked on something similar or has ideas please do share them with me.
Cheers
aquib
I have a text file which has a line of hex values in the following format
AC FF 1A C5............. ....FD (Total of 15 hex values) - called hex.txt
I need to create another file in C++, which would convert the hex.txt into decimal values keeping the format unchanged. The resulting file (dec.txt) should be something like
172 255 26 197...........2 53
I cant seem to start in terms of logic. If someone who has worked on something similar or has ideas please do share them with me.
Cheers
aquib
Comment