I'm attempting to print the address of all arguments in argv as segmented chars.
The address of argv[0]
0x7ffdf0451078
I want to print this as
0x7ffd f0 45 10 78
Then truncate the beginning id, and print this into a formatted gird similar to
+------+------+------+------+
| f0 | 45 | 10 | 78 |
+------+------+------+------+
I'm assuming the easiest way to accomplish this is to hold the address of argv[0] as a string, or char array, and then do some manipulation to that string / array.
However I have not been able to get the address into any type of container thus far.