dear all plz i want help in this program can anyone do it......

Question:
Derive a class from long_int class and add a member function "multiply" in the derived class to multiply two long_ints using the add member function already defined.

multiply should work like this 2*3 = 2+2+2 (adding 2, 3 times).

One you are done defining the multiply function, overload * operator to multiply two long_ints.

Recommended Answers

All 2 Replies

dear all plz i want help in this program can anyone do it......

Question:
Derive a class from long_int class and add a member function "multiply" in the derived class to multiply two long_ints using the add member function already defined.

multiply should work like this 2*3 = 2+2+2 (adding 2, 3 times).

One you are done defining the multiply function, overload * operator to multiply two long_ints.

This should be a good n easy assignment.
>> Derive a class from long_int class
Create a base class with appropriate data & function members (constructors & destructor etc)
Create a Derived class and define multiply() in it. Pass necessary objects (by reference) to it, return the result.

>> One you are done defining the multiply function, overload * operator
write operator *(reference to object) function, should be very similar to multiply().

I'd suggest you to Try it out yourself.

thanx.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.