InterviewSolution
Saved Bookmarks
| 1. |
Is it possible to protect a character pointer from accidentally pointing it to a different address? |
|
Answer» It can be DONE by DEFINING it as a constant CHARACTER POINTER. CONST protects it from modifications. |
|