I have a question on the given problem:
Question: Implement function types that takes no input, declares 3 variables of type char, 3 of type short, 3 of type int, and 3 of type double---in that order---and prints the addresses of the 12 variables---in the same order---in both hex (use %p conversion instruction) and unsigned int format. Ignore the compilation warnings.
&a1 = 0xbff0fb2f, 3220241199
&a2 = 0xbff0fb2e, 3220241198
&a3 = 0xbff0fb2d, 3220241197
&b1 = 0xbff0fb2a, 3220241194
...
Q: How can I represent something in an unsigned int format?
Can you help me out to solve this question.