Given a pointer to int, how can I obtain the actual int?
int
I don\'t know if this is possible or not, but can someone please advise me?
use the dereference operator * e.g
*
void do_something(int *j) { int k = *j; //assign the value j is pointing to , to k ... }