#include #include "bignum.h" int main () { BigNum one, two, three; init_bignum(one); init_bignum(two); init_bignum(three); cout << "Enter a number less than " << MAXSIZE << " digits " << endl; read_bignum(one); cout << "Enter a number less than " << MAXSIZE << " digits " << endl; read_bignum(two); mult_bignum(one,two,three); cout << endl; print_bignum(one); cout << " * " ; print_bignum(two); cout << " = " ; print_bignum(three); cout << endl; }