home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
c
/
actlib11
/
calc
/
test.c
< prev
Wrap
C/C++ Source or Header
|
1993-01-14
|
357b
|
20 lines
#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 ) ;
}
}