![]() |
||
CalcProg1.0
CalcProg is a scientific calculator with a C like interpreter, that can evaluate a single C command (accepts most C syntax). E.g., you can initialize an array variable A[3] with all elements equal to 1, and assign the square root of the sum of A[0], A[1] and A[2] to another variable 'v1 =sqrt(A[0]+A[1]+A[2])'. There are quite a few pre-defined functions, such as sqrt, random, ceil, floor, sin, cos, exp, ln, ... available in CalcPro. In addition, variables in CalcProg can be defined as int, float (double precision), and string.

Future enhancement includes saving commands into files, executing more than one command, hook-up external user-defined functions, and a online help.
Future Enhancement