Main Page   Class Hierarchy   Data Structures   File List   Data Fields   Globals  

main.C

Go to the documentation of this file.
00001 #include <iostream.h>
00002 #include "BigInt.H"
00003 
00004 main() {
00005 
00006   char a[80], b[80];
00007 
00008   cout << "\na= "; cin >> a;
00009   cout << "b= "; cin >> b;
00010 
00011   BigInt e = a;
00012   BigInt f = b;
00013   BigInt d = e + f;
00014 
00015   d.print();
00016   printf("\n");
00017 }
00018 

Generated at Sun Feb 24 09:57:07 2002 for STARLAB by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001