OOP is killing meHere's what your constructor should be: [code] HugeInteger::HugeInteger(int[] op) { fo...
OOP is killing meThe note it gives you is exactly right; you don't have a semicolon after the definition of your clas...
I need some help with uninitialized local variables[code] int temp3 = temp4 * lower; int temp4 = temp3; int lower = lower + 1; [/code] You need to...
OOP is killing meWell, you should be returning result at the end of operator+. Otherwise, what's the point of the fu...
Need help with codeI said after your inner loop, so outside of it, right before the end of the outer one. Like this: ...