/* a version of bigint.cpp that puts all the class definitions for BigInt into the header file bigint.h */ #include #include #include "bigint.h" void main(){ ifstream infile("bignums.dat"); /* this declares the object infile */ BigInt n[10]; for (int i=0; i<10; i++){ n[i].read_num(infile); n[i].print_num(); cout << endl; } }