#include<iostream>
#include "BigIntegerLibrary.hh"
usingnamespace std;
int main()
{
BigInteger a = 65536;
cout << (a * a * a * a * a * a * a * a);
}
I got this errors:
undefined reference to `BigInteger::BigInteger(int)'
undefined reference to `operator<<(std::ostream&, BigInteger const&)'
C:\collect2.exe [Error] ld returned 1 exit status
BigInteger::multiply(BigInteger const&, BigInteger const&)'
I am totally confused? what does these errors mean and how to solve the problem?