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

I try to compile the next code but the compiler says that **`int base::i' is private ** #include <cstdlib> #include <iostream> class base { int i; public: base (int i=0); void set (); int get (); }; class derivada:public base { public: void set (); } ; using namespace std; …

Member Avatar for Ancient Dragon
0
128
Member Avatar for jocker403

I defined two class, one it's call Movil and the other it's call Camion which it's a derived class of Movil. The code that I am talking is: #include <cstdlib> #include <iostream> //class definition class Movil { int ruedas; float velocidadMax; public: Movil (int ruedas=0, float velocidad=0); void setRuedas (int …

Member Avatar for rubberman
0
200