InterviewSolution
Saved Bookmarks
| 1. |
Comment on the following const int *ptr; |
|
Answer» ONG>Explanation: Que. COMMENT on the following. const int *ptr; a. You cannot change the value POINTED by ptr b. You cannot change the POINTER ptr itself c. You May or maynot change the value pointed by ptr d. You can change the pointer as well as the value pointed by it |
|