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
~169 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for fiaz ranjha

i have oop in c++ in some detail but i am not familair with java.please help me to write five sentences in prose or cons of this statement "c++ supports more oop features as compared to jave" please help me

Member Avatar for jonsca
0
80
Member Avatar for fiaz ranjha

class Account { protected: char* Account_Holder; int Amount; public: Account(); Account( char* Holder, int Num ); Account( Account &obj ); }; Account::Account() { Account_Holder = NULL; Amount = 0; } Account::Account( char* Holder, int Num ) { Account_Holder = Holder; Amount = Num; } Account::Account( Account &obj ) { Account_Holder …

Member Avatar for thines01
0
89