Dc (computer program)


dc is a cross-platform reverse-Polish calculator which supports arbitrary-precision arithmetic. It was written by Lorinda Cherry and Robert Morris at Bell Labs. dc is one of the oldest Unix utilities, preceding even the development of the C programming language. Like other utilities of that vintage, it has a powerful set of features but terse syntax.
Although the bc calculator program was traditionally implemented on top of dc, the modern GNU implementation of dc bases off of bc.

History

dc is the oldest surviving Unix language program. When Bell Labs, where dc was developed, received a PDP-11, dcwritten in Bwas the first program to run on the new computer, even before an assembler. Ken Thompson has opined that dc was the very first program written on the machine.

Basic operations

To multiply four and five in dc :

$ cat << EOF > cal.txt
4 5 *
EOF
$ dc cal.txt
20

The results are also available from the commands:

$ echo "4 5 * p" | dc

or

$ dc -
4 5*pq
20
$ dc
4 5 *
20
$ dc -e '4 5 * p'

This translates into "push four and five onto the stack, then, with the multiplication operator, pop two elements from the stack, multiply them and push the result onto the stack." Then the p command is used to examine the top element on the stack. The q command quits the invoked instance of dc. Note that numbers must be spaced from each other even as some operators need not be.
The arithmetic precision is changed with the command k, which sets the number of fractional digits to be used for arithmetic operations. Since the default precision is zero, this sequence of commands produces 0 as a result:

2 3 / p

By adjusting the precision with k, an arbitrary number of decimal places can be produced. This command sequence outputs .66666.

5 k
2 3 / p

To evaluate : :

12 _3 4 ^ + 11 / v 22 -

To swap the top two elements of the stack, use the r command. To duplicate the top element, use the d command.

Input/output

To read a line from stdin, use the ? command. This evaluates the line as if it were a dc command, and so it is necessary that it be syntactically correct and presents a potential security problem because the ! dc command enables arbitrary command execution.
As mentioned above, p prints the top of the stack with a newline after it. n pops the top of the stack and prints it without a trailing newline. f prints the entire stack with one entry per line.
dc also supports arbitrary input and output radices. The i command pops the top of the stack and uses it for the input base. Hex digits must be in upper case to avoid collisions with dc commands and are limited to A-F. The o command does the same for the output base, but keep in mind that the input base affects the parsing of every numeric value afterwards so it is usually advisable to set the output base first. Therefore 10o sets the output radix to the current input radix, but generally not to 10. Nevertheless Ao resets the output base to 10, regardless of the input base. To read the values, the K, I and O commands push the current precision, input radix and output radix on to the top of the stack.
As an example, to convert from hex to binary:

$ echo 16i2o DEADBEEFp | dc
11011110101011011011111011101111

Language features

Registers

In addition to these basic arithmetic and stack operations, dc includes support for macros, conditionals and storing of results for later retrieval.
The mechanism underlying macros and conditionals is the register, which in dc is a storage location with a single character name which can be stored to and retrieved from: sc pops the top of the stack and stores it in register c, and lc pushes the value of register c onto the stack. For example:

3 sc 4 lc * p

Registers can also be treated as secondary stacks, so values can be pushed and popped between them and the main stack using the S and L commands.

Strings

String values are enclosed in characters and may be pushed onto the stack and stored in registers. The a command converts the low order byte of the numeric value into an ASCII character, or if the top of the stack is a string it replaces it with the first character of the string. There are no ways to build up strings or perform string manipulation other than executing it with the x command, or printing it with the P command.
The # character begins a comment to the end of the line.

Macros

Macros are then implemented by allowing registers and stack entries to be strings as well as numbers. A string can be printed, but it can also be executed. So for instance we can store a macro to add one and then multiply by 2 into register m:

sm

and then we can use it like this:

3 lm x p

Conditionals

Finally, we can use this macro mechanism to provide conditionals. The command =r pops two values from the stack, and executes the macro stored in register r only if they are equal. So this prints the string equal only if the top two values on the stack are of equal value:

equal]p] sr 5 5 =r

Other conditionals are >, !>, <, !<, !=, which execute the specified macro if the top two values on the stack are greater, less than or equal to, less than, greater than or equal to, and not equals, respectively. Note that the order of the operands in inequality comparisons is the opposite of the order for arithmetic; evaluates to, but runs the contents of the register because.

Loops

Looping is then possible by defining a macro which reinvokes itself. A simple factorial of the top of the stack might be implemented as:

  1. F: return x!
  2. if x-1 > 1
  3. return x * F
  4. otherwise
  5. return x
dsFxp

The 1Q command exits from a macro, allowing an early return. q quits from two levels of macros. z pushes the current stack depth before the z operation.

Examples

Summing the entire stack

This is implemented with a macro stored in register a which conditionally calls itself, performing an addition each time, until only one value remains on the stack. The z operator is used to push the number of entries in the stack onto the stack. The comparison operator > pops two values off the stack in making the comparison.

dc -e "1 2 4 8 16 100 0ddsaxp"

And the result is 131.

Summing all dc expressions as lines from file

A bare number is a valid dc expression, so this can be used to sum a file where each line contains a single number.
This is again implemented with a macro stored in register a which conditionally calls itself, performing an addition each time, until only one value remains on the stack.

dc -e "0ddsaxp" < file

The ? operator reads another command from the input stream. If the input line contains a decimal number, that value is added to the stack. When the input file reaches end of file, the command is null, and no value is added to the stack.

| dc -e "0ddsaxp"

And the result is 12.
The input lines can also be complex dc commands.

| dc -e "0ddsaxp"

And the result is 42.
Note that since dc supports arbitrary precision, there is no concern about numeric overflow or loss of precision, no matter how many lines the input stream contains, unlike a similarly concise solution in AWK.
Downsides of this solution are: the loop stops on encountering a blank line in the input stream ; and, for handling negative numbers, leading instances of '-' to denote a negative sign must be change to '_' in the input stream, because of dc's nonstandard negative sign. The ? operator in dc does not provide a clean way to discern reading a blank line from reading end of file.

Unit conversion

As an example of a relatively simple program in dc, this command :

dc -e 'Enter a number, or 0 to exit]PAP]shszPnPAPdx]dx'

converts distances from metres to feet and inches; the bulk of it is concerned with prompting for input, printing output in a suitable format and looping around to convert another number.

Greatest common divisor

As an example, here is an implementation of the Euclidean algorithm to find the GCD:

dc -e '??dsax+p' # shortest
dc -e 'P?P?dsax+Pp' # easier-to-read version

Factorial

Computing the factorial of an input value,

dc -e '?sQdsFxp'

Quines in dc

There exist also quines in the programming language dc; programs that produce its source code as output.

dc -e '93Pn]dx'
dc -e 'P]dx'

Printing all prime numbers


dc -e '2p3ps#s@s&ds.x'

This program was written by Michel Charpentier.
It outputs the sequence of prime numbers.
Note that shorter implementation is possible, which needs fourteen symbols fewer.

dc -e '2p3ps$s#ds.x'