Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~234 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for Indu_1

I have not used an object to call the function but have passed objects as parameters and call function without an object. Can anyone explain #include <iostream> using namespace std; class test { int a; public: test(int x): a(x) {} void display() { cout<<"the value of a is"<<a<<endl; } void …

Member Avatar for David W
0
234