InterviewSolution
Saved Bookmarks
| 1. |
Which among the following is not applicable for the static member functions?(a) Variable pointers(b) void pointers(c) this pointer(d) Function pointers |
|
Answer» Correct choice is (c) this pointer The best explanation: Since the static members are not property of objects, they doesn’t have this pointer. Every time the same member is referred from all the objects, hence use of this pointer is of no use. |
|