NPTEL solution
Solution for NPTEL Programming, Programming in C++, Week 2 MCQs
1) Look at the code snippet below:const float * ch = &c ;Which of the following statement is true for the variable ‘ch’ ? a) const-Pointer to non-const-Pointee b) non-const-Pointer to const-Pointee c) const-Pointer to const-Pointee d) non-const-Pointer to non-const-Pointee Answer(s) : b) non-const-Pointer to const-Pointee [quads id=1] 2) Look Read more…