Multiple Choice
A dangling pointer is a pointer
A) to a block of memory that has been deleted.
B) that has been declared, but has not yet been assigned a value.
C) that has not been initialized.
D) that has been assigned the value of null or null_ptr.
E) None of the above
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q10: A function may return a pointer, but
Q15: An array name is a pointer constant
Q52: Memory cannot be allocated after a program
Q54: With pointer variables, you can _ manipulate
Q55: A _ keeps track of dynamically-allocated memory
Q56: Any time you use the new operator,
Q57: The statement double *num;<br>A) defines a variable
Q59: The statement cout << *ptr; will output<br>A)
Q60: The statement int *ptr = new int;
Q62: A pointer may be initialized with<br>A) the