- 2
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
1 Odpowiedź
0
ch is a const pointer. i think that is it. you do not know at what it is pointing, it is just pointing at some place in memory