basic syntax of pointers: *ptr= &a
here &a
will return the memory address of variable a and *ptr
will store value of variable a
I want to ask, is it possible to make a pointer return a value from a given memory address? if yes what's the syntax