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
~209 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for mozammel

Hi, i got a program that crashing while i want to delete a pointer value. here is the code: #include<iostream> using namespace std; class sab{ int a; public: sab(int x); ~sab(); int get(); sab(const sab &ob); }; sab::sab(int x) { cout<<"constructor"<<endl; a=x; } sab::sab(const sab &ob){ cout<<"copyconstructor"<<endl; } sab::~sab(){ cout<<"destructor"<<endl; …

Member Avatar for rubberman
0
209