InterviewSolution
Saved Bookmarks
| 1. |
Consider the following declarations in C++ :int C, *PTR ;Which of the following statements is TRUE?1). PTR = &C ;2). C = &PTR ;3). PTR = C ;4). *PTR = &C; |
| Answer» | |