Question
#include <iostream>
using namespace std;
class Car
{
public:
int speed;
};
int main()
{
int Car :: *pSpeed = &Car :: speed;
Car c1;
c1.speed = 1;
cout << c1.speed << endl;
c1.*pSpeed = 2;
cout << c1.speed << endl;
return 0;
}
a.
1
b.
2
c.
Both 1 & 2
d.
None of the mentioned
Posted under Object Oriented Programming Using C++
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this program?
Similar Questions
Discover Related MCQs
Q. Which is the best design choice for using pointer to member function?
View solution
Q. What is the operation for .*?
View solution
Q. Which is used to allocate and deallocate storage for objects during the execution?
View solution
Q. Which operators are used in the free store?
View solution
Q. What type of class member is operator new?
View solution
Q. What must be an operand of operator delete?
View solution
Q. How can object be allocated outside the object lifetime?
View solution
Q. Pick out the wrong header file about strings.
View solution
Q. Which is best for coding the standard libary for c++?
View solution
Q. What is meant by vector in the container library contains?
View solution
Q. Pick out the wrong header file.
View solution
Q. What is meant by standard c++ library?
View solution
Q. Pick out parameter for rehash method in unordered_set in c++?
View solution
Q. What is the use of <exception> header
View solution
Q. How many sets of requirements are need in designing a container?
View solution
Q. Which interface in the container is required for storage management?
View solution
Q. Which is present in the basic interface of the allocator interface?
View solution
Q. Which container provides random access iterators?
View solution
Q. Which is used for manually writing lookup table?
View solution
Q. How the member functions in the container can be accessed?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Object Oriented Programming Using C++? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!