Hi i have a program that outputs a bunch of hexadecimal numbers. Here is a example:
18
3048
ffff8007
The thing is i want all the outputs to be 8 digits long, so i want the out put to be something like:
00000018
00003048
ffff8007
so yea basically i just need to add some 0s infront the outputs that are not 8 digits long. Any ideas?
Thanks