Bc

BC(1) - General Commands Manual

Dc, Bc

BC(1) - General Commands Manual # BC(1) - General Commands Manual NAME # bc - arbitrary-precision arithmetic language and calculator SYNOPSIS # bc [-cl] [-e expression] [file …] DESCRIPTION # bc is an interactive processor for a language which resembles C but provides unlimited precision arithmetic. It takes input from any expressions on the command line and any files given, then reads the standard input. Options available: -c bc is actually a preprocessor for dc(1), which it invokes automatically, unless the -c (compile only) option is present. ...

DC(1) - General Commands Manual

Bc, Dc

DC(1) - General Commands Manual # DC(1) - General Commands Manual NAME # dc - desk calculator SYNOPSIS # dc [-x] [-e expression] [file] DESCRIPTION # dc is an arbitrary precision arithmetic package. The overall structure of dc is a stacking (reverse Polish) calculator i.e. numbers are stored on a stack. Adding a number pushes it onto the stack. Arithmetic operations pop arguments off the stack and push the results. ...