From: Jan M. <jan...@vo...> - 2010-01-01 12:11:23
|
Hello, I would like to store an address of a pointer I'm going to freed. So I made something like user_type o...*i, *j; j = i; free (i); X ... I would like to ask if after the free command does j points to the same address like before. It should be so, I think. Thanks Jan Mura I need the address because it points to the next member in a connected list. |