#include "bigint.h"
BigInt::Class_name = "BigInt"; // Set the global name (once-only)
int
main(int argc, char** argv)
{
BigInt a = 5; // Creates a BigInt type with value 5
BigInt b = 8; // Creates a BigInt type with value 8
BigInt c = a+b ; // Add a + b and store in c.
cout << c; // Prints result to standard output.
if (is_zero(c)) // Test for zero
cout << "Result is 0\n";
}
1.0