Main Page   Class Hierarchy   Data Structures   File List   Data Fields   Globals  

sint_test.C

Go to the documentation of this file.
00001 /*
00002  *  sint_test.C: test the super simon integer string stream
00003  *.............................................................................
00004  *    version 1:  Feb 1997   Simon F. Portegies Zwart 
00005  *.............................................................................
00006  */
00007 #include <iostream.h>
00008 #include "sint.h"
00009 
00010 #ifdef TOOLBOX
00011 
00012 main() {
00013 
00014   char a[80], b[80];
00015 
00016   cout << "\na= "; cin >> a;
00017   cout << "b= "; cin >> b;
00018 
00019   sint e = a;
00020   sint f = b;
00021   sint d = e + f;
00022 
00023   d.print();
00024   printf("\n");
00025 }
00026 
00027 #endif

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