Dangling References
main(){
int *p;
p = dangle();
}
int *dangle(){
int i=23;
return &i;
}
Previous slide
Back to first slide
View graphic version