Tagged Questions
1
vote
4answers
123 views
Pointer validity after stack unwinding
In C++ does a pointer remains valid after stack unwinding or not ?
Thanks for consideration.
Regards
Ehsan
0
votes
3answers
158 views
Pointer question
Okay I go through 2 layers of functions fun1 calls func2 calls func3 . I pass a pointer all the way down using basically int *ptr, at the lowest "level" of the call stack I also have another function ...