Local variable, variables are "allocated" on the stack. The stack is a preallocated amount of memory to hold those local variables. The variable variables cease to be valid when the function exists exits and will be overriden overwritten by whatever comes next.
In your case, the code is doing nothing since it doesn't return your result. Also, a pointer to an object on the stack will also cease to be valid when the scope exits, so I guess in your precise case (you seems to be doing a linked list), you will need to use malloc().
