If you have to ask......
2007-01-23 08:10:03
·
answer #1
·
answered by Anonymous
·
0⤊
0⤋
Rajkumar its really nice question for studying c-lang:
ans is: u know that whenever u declare a variable in c, its gets a junk value,unless it is global variable..same happens with pointer...so if u change the contents of that pointer it will effect the memory which is somewhere which doesnt belongs to u..
so this pointer with garbage value is known as dangling pointer.
2007-01-24 12:15:29
·
answer #2
·
answered by Bharath 2
·
0⤊
0⤋
When two pointers point at the same address, and one pointer free that address, i.e, the memory location is emptied, the other pointer still points to the same location. such a pointer pointing to a deleted location is called a dangling pointer.
2007-01-23 20:44:32
·
answer #3
·
answered by spirit 1
·
0⤊
0⤋
A pointer that points to some area of memory you may or may not be using. Often it is the result of unitializing a pointer, or not nulling a pointer after it's useful purposes.
2007-01-23 16:18:04
·
answer #4
·
answered by Anonymous
·
0⤊
0⤋
A pointer with a reference that doesn't exist.
2007-01-23 16:13:28
·
answer #5
·
answered by Kokopelli 6
·
0⤊
0⤋
a serious medical condition affecting millions of older americans. If it dangles for more than four hours, see a doctor.
2007-01-23 16:40:38
·
answer #6
·
answered by Doug k 3
·
0⤊
0⤋
http://en.wikipedia.org/wiki/Dangling_pointer
2007-01-24 04:03:25
·
answer #7
·
answered by Deepak Vasudevan 5
·
0⤊
0⤋