So where is your class?
> Create a class HugeInteger that uses a 40-element array of digits to store
> integers as large as 40 digits each.
class HugeInteger {
private:
char myInt[40];
public:
};
> Provide member functions input, output, add and substract etc etc
Now try ONE of those functions with the above and post your code.