1 .\" $OpenBSD: bc.1,v 1.22 2007/05/31 19:20:07 jmc Exp $
2 .\" $DragonFly: src/usr.bin/bc/bc.1,v 1.6 2007/09/01 18:42:08 pavalos Exp $
4 .\" Copyright (C) Caldera International Inc. 2001-2002.
5 .\" All rights reserved.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code and documentation must retain the above
11 .\" copyright notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\" must display the following acknowledgement:
17 .\" This product includes software developed or owned by Caldera
18 .\" International, Inc.
19 .\" 4. Neither the name of Caldera International, Inc. nor the names of other
20 .\" contributors may be used to endorse or promote products derived from
21 .\" this software without specific prior written permission.
23 .\" USE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA
24 .\" INTERNATIONAL, INC. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR
25 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 .\" IN NO EVENT SHALL CALDERA INTERNATIONAL, INC. BE LIABLE FOR ANY DIRECT,
28 .\" INDIRECT INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29 .\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 .\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33 .\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 .\" POSSIBILITY OF SUCH DAMAGE.
36 .\" @(#)bc.1 6.8 (Berkeley) 8/8/91
43 .Nd arbitrary-precision arithmetic language and calculator
47 .Op Fl e Ar expression
51 is an interactive processor for a language which resembles
52 C but provides unlimited precision arithmetic.
53 It takes input from any expressions on the command line and
54 any files given, then reads the standard input.
60 is actually a preprocessor for
62 which it invokes automatically, unless the
66 In this case the generated
68 instructions are sent to the standard output,
69 instead of being interpreted by a running
72 .It Fl e Ar expression
77 options are specified, they are processed in the order given,
78 separated by newlines.
80 Allow specification of an arbitrary precision math library.
81 The definitions in the library are available to command line
87 programs is as follows:
94 As a non-portable extension, it is possible to use long names
95 in addition to single letter names.
96 A long name is a sequence starting with a lowercase letter
97 followed by any number of lowercase letters and digits.
98 The underscore character
103 .Bd -unfilled -offset indent -compact
104 are enclosed in /* and */
105 are enclosed in # and the next newline
108 The newline is not part of the line comment,
109 which in itself is a non-portable extension.
112 .Bd -unfilled -offset indent -compact
114 array elements: L [ E ]
115 The words `ibase', `obase', and `scale'
116 The word `last' or a single dot
120 .Bd -unfilled -offset indent -compact
121 arbitrarily long numbers with optional sign and decimal point
124 length ( E ) number of significant decimal digits
125 scale ( E ) number of digits right of decimal point
130 .Sq \e<newline><whitespace>
131 is ignored within numbers.
135 The following arithmetic and logical operators can be used.
136 The semantics of the operators is the same as in the C language.
137 They are listed in order of decreasing precedence.
138 Operators in the same group have the same precedence.
139 .Bl -column "= += \-= *= /= %= ^=" "Associativity" "multiply, divide, modulus" -offset indent
140 .It Sy "Operator" Ta Sy "Associativity" Ta Sy "Description"
141 .It "++ \-\-" Ta "none" Ta "increment, decrement"
142 .It "\-" Ta "none" Ta "unary minus"
143 .It "^" Ta "right" Ta "power"
144 .It "* / %" Ta "left" Ta "multiply, divide, modulus"
145 .It "+ \-" Ta "left" Ta "plus, minus"
146 .It "= += -= *= /= %= ^=" Ta "right" Ta "assignment"
147 .It "== <= >= != < >" Ta "none" Ta "relational"
148 .It "!" Ta "none" Ta "boolean not"
149 .It "&&" Ta "left" Ta "boolean and"
150 .It "||" Ta "left" Ta "boolean or"
154 .Bl -bullet -offset indent
156 The relational operators may appear in any expression.
159 standard only allows them in the conditional expression of an
166 The relational operators have a lower precedence than the assignment
168 This has the consequence that the expression
172 which is probably not what the programmer intended.
174 In contrast with the C language, the relational operators all have
175 the same precedence, and are non-associative.
178 will produce a syntax error.
180 The boolean operators (!, && and ||) are non-portable extensions.
183 (!) operator has much lower precedence than the same operator in the
185 This has the consequence that the expression
189 Prudent programmers use parentheses when writing expressions involving
194 .Bd -unfilled -offset indent -compact
205 a string of characters, enclosed in double quotes
209 A string may contain any character, except a double quote.
210 The if statement with an else branch is a non-portable extension.
211 All three E's in a for statement may be empty.
212 This is a non-portable extension.
213 The continue and print statements are also non-portable extensions.
215 The print statement takes a list of comma-separated expressions.
216 Each expression in the list is evaluated and the computed
217 value is printed and assigned to the variable `last'.
218 No trailing newline is printed.
219 The expression may also be a string enclosed in double quotes.
220 Within these strings the following escape sequences may be used:
237 Any other character following a backslash will be ignored.
238 Strings will not be assigned to `last'.
241 .Bd -unfilled -offset indent
242 define L ( L ,..., L ) {
249 As a non-portable extension, the opening brace of the define statement
250 may appear on the next line.
251 The return statement may also appear in the following forms:
252 .Bd -unfilled -offset indent
258 The first two are equivalent to the statement
260 The last form is a non-portable extension.
261 Not specifying a return statement is equivalent to writing
264 Functions available in the math library, which is loaded by specifying the
266 flag on the command line
268 .Bl -tag -width j(n,x) -offset indent -compact
283 All function arguments are passed by value.
285 The value of a statement that is an expression is printed
286 unless the main operator is an assignment.
287 The value printed is assigned to the special variable `last'.
288 This is a non-portable extension.
289 A single dot may be used as a synonym for `last'.
290 Either semicolons or newlines may separate statements.
293 influences the number of digits to be retained on arithmetic
294 operations in the manner of
300 set the input and output number radix respectively.
302 The same letter may be used as an array, a function,
303 and a simple variable simultaneously.
304 All variables are global to the program.
305 `Auto' variables are pushed down during function calls.
306 When using arrays as function arguments
307 or defining them as automatic variables,
308 empty square brackets must follow the array name.
311 .Bd -literal -offset indent
328 defines a function to compute an approximate value of
329 the exponential function and
331 .Dl for(i=1; i<=10; i++) e(i)
333 prints approximate values of the exponential function of
334 the first ten integers.
335 .Bd -literal -offset indent
336 $ bc -l -e 'scale = 500; 2 * a(2^10000)' -e quit
338 prints an approximation of pi.
340 .Bl -tag -width /usr/share/misc/bc.library -compact
341 .It Pa /usr/share/misc/bc.library
342 math library, read when the
344 option is specified on the command line.
351 .%B "4.4BSD Users's Supplementary Documents (USD)"
352 .%T "BC \- An Arbitrary Precision Desk-Calculator Language"
354 .\" .Pa /usr/share/doc/usd/06.bc/ .
358 utility is compliant with the
364 are extensions to that specification.
368 command first appeared in
370 A complete rewrite of the
372 command first appeared in
376 The original version of the
378 command was written by
382 The current version of the
384 utility was written by
388 is interpreted when read, not when executed.
390 Some non-portable extensions, as found in the GNU version of the
392 utility are not implemented (yet).