%p Format specifier in c

If this is what you are asking, %p and %Fp print out a pointer, specifically the address to which the pointer refers, and since it is printing out a part of your computer’s architecture, it does so in Hexadecimal. In C, you can cast between a pointer and an int, since a pointer is just … Read more