home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <math.h>
- #include <string.h>
- #include "calc.h"
-
-
-
-
- void main( )
-
- {
- char string[255] ;
-
- for (;;) { printf( "\nCalcul : " ) ;
- if ( ! *gets(string) ) break ;
- if ( calc(string) == HUGE_VAL ) strcpy( string , "error" ) ;
- printf( "Result: %s\n" , string ) ;
- }
- }
-