InterviewSolution
Saved Bookmarks
| 1. |
Which reference modifier is used to define the reference variable?(a) &(b) $(c) #(d) @This question was addressed to me in an interview for job.Query is from References topic in section Types, Pointers, Arrays & Structures in C++ of C++ |
|
Answer» CORRECT ANSWER is (a) & The EXPLANATION: & aka ‘AMPERSAND’ used to define a reference variable. |
|