so here is my code:
#include main(){ int hi; hi = 3; printf(\"%d\",&hi); }
and the output is: \"2686748\"
im using
The "%d" tells the printf you are putting in an integer. The integer you are giving it is &hi which is the address of hi. If you want the value of hi just use that
"%d"
printf
&hi
hi