This file is indexed.

/usr/share/doc/bc/bc.html is in bc 1.06.95-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html401/loose.dtd">
<html>
<!-- Created on December 21, 2009 by texi2html 1.82
texi2html was written by: 
            Lionel Cons <Lionel.Cons@cern.ch> (original author)
            Karl Berry  <karl@freefriends.org>
            Olaf Bachmann <obachman@mathematik.uni-kl.de>
            and many others.
Maintained by: Many creative people.
Send bugs and suggestions to <texi2html-bug@nongnu.org>
-->
<head>
<title>bc Command Manual</title>

<meta name="description" content="bc Command Manual">
<meta name="keywords" content="bc Command Manual">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="texi2html 1.82">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
pre.display {font-family: serif}
pre.format {font-family: serif}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: serif; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: serif; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.roman {font-family:serif; font-weight:normal;}
span.sansserif {font-family:sans-serif; font-weight:normal;}
ul.toc {list-style: none}
-->
</style>


</head>

<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">

<a name="Top"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1 class="settitle">bc Command Manual</h1>

<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Introduction">1. Introduction</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Basic-Elements">2. Basic Elements</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Expressions">3. Expressions</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Statements">4. Statements</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Functions">5. Functions</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Examples">6. Examples</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Readline-and-Libedit-Options">7. Readline and Libedit Options</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Comparison-with-Other-Implementations">8. Comparison with Other Implementations</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Limits">9. Limits</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Environment-Variables">10. Environment Variables</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
</table>

<hr size="1">
<a name="Introduction"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Description" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[ &lt;&lt; ]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Introduction-1"></a>
<h1 class="chapter">1. Introduction</h1>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Description">1.1 Description</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Command-Line-Options">1.2 Command Line Options</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
</table>

<hr size="6">
<a name="Description"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Command-Line-Options" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Description-1"></a>
<h2 class="section">1.1 Description</h2>

<p><code>bc</code> [ -hlwsqv ] [long-options] [ <var> file ...</var> ]
</p>
<p><code>bc</code> is a language that supports arbitrary precision numbers
with interactive execution of statements.  There are some similarities
in the syntax to the C programming language. 
A standard math library is available by command line option.
If requested, the math library is defined before processing any files.
<code>bc</code> starts by processing code from all the files listed
on the command line in the order listed.  After all files have been
processed, <code>bc</code> reads from the standard input.  All code is
executed as it is read.  (If a file contains a command to halt the
processor, <code>bc</code> will never read from the standard input.)
</p>
<p>This version of <code>bc</code> contains several extensions beyond
traditional <code>bc</code> implementations and the POSIX draft standard.
Command line options can cause these extensions to print a warning or to
be rejected.  This document describes the language accepted by this
processor.  Extensions will be identified as such.
</p>
<p>The author would like to thank Steve Sommars
(<a href="mailto:Steve.Sommars@att.com">Steve.Sommars@att.com</a>) for his extensive help in testing the
implementation.  Many great suggestions were given.  This is a much
better product due to his involvement.
</p>
<p>Email bug reports to <a href="mailto:bug-bc@gnu.org">bug-bc@gnu.org</a>.  Be sure to include
the word &ldquo;bc&rdquo; somewhere in the &ldquo;Subject:&rdquo; field.
</p>
<hr size="6">
<a name="Command-Line-Options"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Description" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Command-Line-Options-1"></a>
<h2 class="section">1.2 Command Line Options</h2>

<p><code>bc</code> takes the following options from the command line:
</p><dl compact="compact">
<dt> <code>-h, --help</code></dt>
<dd><p>Print the usage and exit.
</p>
</dd>
<dt> <code>-l, --mathlib</code></dt>
<dd><p>Define the standard math library.
</p>
</dd>
<dt> <code>-w, --warn</code></dt>
<dd><p>Give warnings for extensions to POSIX <code>bc</code>.
</p>
</dd>
<dt> <code>-s, --standard</code></dt>
<dd><p>Process exactly the POSIX <code>bc</code> language.
</p>
</dd>
<dt> <code>-q, --quiet</code></dt>
<dd><p>Do not print the normal GNU <code>bc</code> welcome.
</p>
</dd>
<dt> <code>-v, --version</code> </dt>
<dd><p>Print the version number and copyright and quit.
</p>
</dd>
</dl>


<hr size="6">
<a name="Basic-Elements"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Command-Line-Options" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Numbers" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Basic-Elements-1"></a>
<h1 class="chapter">2. Basic Elements</h1>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Numbers">2.1 Numbers</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Variables">2.2 Variables</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Comments">2.3 Comments</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
</table>

<hr size="6">
<a name="Numbers"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Basic-Elements" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Variables" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Numbers-1"></a>
<h2 class="section">2.1 Numbers</h2>

<p>The most basic element in <code>bc</code> is the number.  Numbers are
arbitrary precision numbers.  This precision is both in the integer part
and the fractional part.  All numbers are represented internally in
decimal and all computation is done in decimal.  (This version truncates
results from divide and multiply operations.)  There are two attributes
of numbers, the length and the scale.  The length is the total number of
significant decimal digits in a number and the scale is the total number
of decimal digits after the decimal point.  For example, .000001 has a
length of 6 and scale of 6, while 1935.000 has a length of 7 and a scale
of 3.
</p>
<hr size="6">
<a name="Variables"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Numbers" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Comments" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Variables-1"></a>
<h2 class="section">2.2 Variables</h2>

<p>Numbers are stored in two types of variables, simple variables and
arrays.  Both simple variables and array variables are named.  Names
begin with a letter followed by any number of letters, digits and
underscores.  All letters must be lower case.  (Full alphanumeric
names are an extension. In POSIX <code>bc</code> all names are a single
lower case letter.)  The type of variable is clear by the context
because all array variable names will be followed by brackets ( [ ] ).
</p>
<p>There are four special variables, <var>scale</var>, <var>ibase</var>, <var>obase</var>, and
<var>last</var>.  <var>scale</var> defines how some operations use digits after the
decimal point.  The default value of <var>scale</var> is 0. <var>ibase</var>
and <var>obase</var> define the conversion base for input and output
numbers.  The default for both input and output is base 10.
<var>last</var> (an extension) is a variable that has the value of the last
printed number.  These will be discussed in further detail where
appropriate.  All of these variables may have values assigned to them
as well as used in expressions.
</p>
<hr size="6">
<a name="Comments"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Variables" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Comments-1"></a>
<h2 class="section">2.3 Comments</h2>

<p>Comments in <code>bc</code> start with the characters <code>/*</code> and end with
the characters <code>*/</code>.  Comments may start anywhere and appear as a
single space in the input.  (This causes comments to delimit other
input items.  For example, a comment can not be found in the middle of
a variable name.)  Comments include any newlines (end of line) between
the start and the end of the comment.
</p>
<p>To support the use of scripts for <code>bc</code>, a single line comment has been
added as an extension.  A single line comment starts at a <code>#</code>
character and continues to the next end of the line.  The end of line
character is not part of the comment and is processed normally.
</p>
<hr size="6">
<a name="Expressions"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Comments" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#About-Expressions-and-Special-Variables" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Basic-Elements" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Statements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Expressions-1"></a>
<h1 class="chapter">3. Expressions</h1>

<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#About-Expressions-and-Special-Variables">3.1 About Expressions and Special Variables</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Basic-Expressions">3.2 Basic Expressions</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Relational-Expressions">3.3 Relational Expressions</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Boolean-Expressions">3.4 Boolean Expressions</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Precedence">3.5 Precedence</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Special-Expressions">3.6 Special Expressions</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
</table>

<hr size="6">
<a name="About-Expressions-and-Special-Variables"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Expressions" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Basic-Expressions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Expressions" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Statements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="About-Expressions-and-Special-Variables-1"></a>
<h2 class="section">3.1 About Expressions and Special Variables</h2>

<p>The numbers are manipulated by expressions and statements.  Since
the language was designed to be interactive, statements and expressions
are executed as soon as possible.  There is no main program.  Instead,
code is executed as it is encountered.  (Functions, discussed in
detail later, are defined when encountered.)
</p>
<p>A simple expression is just a constant. <code>bc</code> converts constants
into internal decimal numbers using the current input base, specified by
the variable <var>ibase</var>. (There is an exception in functions.)  The
legal values of <var>ibase</var> are 2 through 16.  Assigning a value outside
this range to <var>ibase</var> will result in a value of 2 or 16.  Input
numbers may contain the characters 0-9 and A-F. (Note: They must be
capitals.  Lower case letters are variable names.)  Single digit numbers
always have the value of the digit regardless of the value of
<var>ibase</var>. (i.e. A = 10.)  For multi-digit numbers, <code>bc</code>
changes all input digits greater or equal to <var>ibase</var> to the value of
<var>ibase</var>-1.  This makes the number <code>FFF</code> always be the largest
3 digit number of the input base.
</p>
<p>Full expressions are similar to many other high level languages.
Since there is only one kind of number, there are no rules for mixing
types.  Instead, there are rules on the scale of expressions.  Every
expression has a scale.  This is derived from the scale of original
numbers, the operation performed and in many cases, the value of the
variable <var>scale</var>. Legal values of the variable <var>scale</var> are
0 to the maximum number representable by a C integer.
</p>
<hr size="6">
<a name="Basic-Expressions"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#About-Expressions-and-Special-Variables" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Relational-Expressions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Expressions" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Statements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Basic-Expressions-1"></a>
<h2 class="section">3.2 Basic Expressions</h2>

<p>In the following descriptions of legal expressions, &quot;expr&quot; refers to a
complete expression and &quot;<var>var</var>&quot; refers to a simple or an array variable.
A simple variable is just a 
</p>
<p><var>name</var>
</p>
<p>and an array variable is specified as 
</p>
<p><var>name</var>[<var>expr</var>] 
</p>
<p>Unless specifically mentioned the scale of the result is the maximum
scale of the expressions involved.
</p>
<dl compact="compact">
<dt> <code>- expr</code></dt>
<dd><p>The result is the negation of the expression.
</p>
</dd>
<dt> <code>++ <var>var</var></code></dt>
<dd><p>The variable is incremented by one and the new value is the result of
the expression.
</p>
</dd>
<dt> <code>-- <var>var</var></code></dt>
<dd><p>The variable
is decremented by one and the new value is the result of the
expression.
</p>
</dd>
<dt> <code><var>var</var> ++</code></dt>
<dd><p> The result of the expression is the value of
the variable and then the variable is incremented by one.
</p>
</dd>
<dt> <code><var>var</var> --</code></dt>
<dd><p>The result of the expression is the value of the variable and then
the variable is decremented by one.
</p>
</dd>
<dt> <code>expr + expr</code></dt>
<dd><p>The result of the expression is the sum of the two expressions.
</p>
</dd>
<dt> <code>expr - expr</code></dt>
<dd><p>The result of the expression is the difference of the two expressions.
</p>
</dd>
<dt> <code>expr * expr</code></dt>
<dd><p>The result of the expression is the product of the two expressions.
</p>
</dd>
<dt> <code>expr / expr</code></dt>
<dd><p>The result of the expression is the quotient of the two expressions.
The scale of the result is the value of the variable <code>scale</code>
</p>
</dd>
<dt> <code>expr % expr</code></dt>
<dd><p>The result of the expression is the &quot;remainder&quot; and it is computed in the
following way.  To compute a%b, first a/b is computed to <var>scale</var>
digits.  That result is used to compute a-(a/b)*b to the scale of the
maximum of <var>scale</var>+scale(b) and scale(a).  If <var>scale</var> is set
to zero and both expressions are integers this expression is the
integer remainder function.
</p>
</dd>
<dt> <code>expr ^ expr</code></dt>
<dd><p>The result of the expression is the value of the first raised to the
second. The second expression must be an integer.  (If the second
expression is not an integer, a warning is generated and the
expression is truncated to get an integer value.)  The scale of the
result is <var>scale</var> if the exponent is negative.  If the exponent
is positive the scale of the result is the minimum of the scale of the
first expression times the value of the exponent and the maximum of
<var>scale</var> and the scale of the first expression.  (e.g. scale(a^b)
= min(scale(a)*b, max(<var>scale</var>, scale(a))).)  It should be noted
that expr^0 will always return the value of 1.
</p>
</dd>
<dt> <code>( expr )</code></dt>
<dd><p>This alters the standard precedence to force the evaluation of the
expression.
</p>
</dd>
<dt> <code><var>var</var> = expr</code></dt>
<dd><p>The variable is assigned the value of the expression.
</p>
</dd>
<dt> <code><var>var</var> &lt;op&gt;= expr</code></dt>
<dd><p>This is equivalent to &quot;<var>var</var> = <var>var</var> &lt;op&gt; expr&quot; with the
exception that the &quot;<var>var</var>&quot; part is evaluated only once.  This can
make a difference if &quot;<var>var</var>&quot; is an array.
</p></dd>
</dl>

<hr size="6">
<a name="Relational-Expressions"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Basic-Expressions" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Boolean-Expressions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Expressions" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Statements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Relational-Expressions-1"></a>
<h2 class="section">3.3 Relational Expressions</h2>

<p>Relational expressions are a special kind of expression that always
evaluate to 0 or 1, 0 if the relation is false and 1 if the relation is
true.  These may appear in any legal expression.  (POSIX <code>bc</code>
requires that relational expressions are used only in <code>if</code>,
<code>while</code>, and <code>for</code> statements and that only one relational
test may be done in them.)  The relational operators are
</p>
<dl compact="compact">
<dt> <code>expr1 &lt; expr2</code></dt>
<dd><p>The result is 1 if expr1 is strictly less than expr2.
</p>
</dd>
<dt> <code>expr1 &lt;= expr2</code></dt>
<dd><p>The result is 1 if expr1 is less than or equal to expr2.
</p>
</dd>
<dt> <code>expr1 &gt; expr2</code></dt>
<dd><p>The result is 1 if expr1 is strictly greater than expr2.
</p>
</dd>
<dt> <code>expr1 &gt;= expr2</code></dt>
<dd><p>The result is 1 if expr1 is greater than or equal to expr2.
</p>
</dd>
<dt> <code>expr1 == expr2</code></dt>
<dd><p>The result is 1 if expr1 is equal to expr2.
</p>
</dd>
<dt> <code>expr1 != expr2</code></dt>
<dd><p>The result is 1 if expr1 is not equal to expr2.
</p></dd>
</dl>

<hr size="6">
<a name="Boolean-Expressions"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Relational-Expressions" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Precedence" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Expressions" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Statements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Boolean-Expressions-1"></a>
<h2 class="section">3.4 Boolean Expressions</h2>

<p>Boolean operations are also legal.  (POSIX <code>bc</code> does NOT have
boolean operations). The result of all boolean operations are 0 and 1
(for false and true) as in relational expressions.  The boolean
operators are:
</p>
<dl compact="compact">
<dt> <code>!expr</code></dt>
<dd><p>The result is 1 if expr is 0.
</p>
</dd>
<dt> <code>expr &amp;&amp; expr</code></dt>
<dd><p>The result is 1 if both expressions are non-zero.
</p>
</dd>
<dt> <code>expr || expr</code></dt>
<dd><p>The result is 1 if either expression is non-zero.
</p></dd>
</dl>

<hr size="6">
<a name="Precedence"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Boolean-Expressions" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Special-Expressions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Expressions" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Statements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Precedence-1"></a>
<h2 class="section">3.5 Precedence</h2>

<p>The expression precedence is as follows: (lowest to highest)
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">|| operator, left associative
&amp;&amp; operator, left associative
! operator, nonassociative
Relational operators, left associative
Assignment operator, right associative
+ and - operators, left associative
*, / and % operators, left associative
^ operator, right associative
unary - operator, nonassociative
++ and -- operators, nonassociative
</pre></td></tr></table>

<p>This precedence was chosen so that POSIX compliant <code>bc</code> programs
will run correctly. This will cause the use of the relational and
logical operators to have some unusual behavior when used with
assignment expressions.  Consider the expression:
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">a = 3 &lt; 5
</pre></td></tr></table>

<p>Most C programmers would assume this would assign the result of &quot;3 &lt;
5&quot; (the value 1) to the variable &quot;a&quot;.  What this does in <code>bc</code> is
assign the value 3 to the variable &quot;a&quot; and then compare 3 to 5.  It is
best to use parentheses when using relational and logical operators
with the assignment operators.
</p>
<hr size="6">
<a name="Special-Expressions"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Precedence" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Statements" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Expressions" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Expressions" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Statements" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Special-Expressions-1"></a>
<h2 class="section">3.6 Special Expressions</h2>

<p>There are a few more special expressions that are provided in
<code>bc</code>.  These have to do with user-defined functions and standard
functions.  They all appear as
&quot;<var>name</var><code>(</code><var>parameters</var><code>)</code>&quot;.  See section <a href="#Functions">Functions</a>, for
user-defined functions.  The standard functions are:
</p>
<dl compact="compact">
<dt> <code>length ( expression )</code></dt>
<dd><p>The value of the length function is the number of significant digits in the
expression.
</p>
</dd>
<dt> <code>read ( )</code></dt>
<dd><p>The <code>read</code> function (an extension) will read a number from the
standard input, regardless of where the function occurs.  Beware, this
can cause problems with the mixing of data and program in the standard
input.  The best use for this function is in a previously written
program that needs input from the user, but never allows program code to
be input from the user.  The value of the <code>read</code> function is the
number read from the standard input using the current value of the
variable <var>ibase</var> for the conversion base.
</p>
</dd>
<dt> <code>scale ( expression )</code></dt>
<dd><p>The value of the <code>scale</code> function is the number of digits after the
decimal point in the expression.
</p>
</dd>
<dt> <code>sqrt ( expression )</code></dt>
<dd><p>The value of the <code>sqrt</code> function is the square root of the
expression.  If the expression is negative, a run time error is
generated.
</p></dd>
</dl>

<hr size="6">
<a name="Statements"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Special-Expressions" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Pseudo-Statements" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Expressions" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Statements-1"></a>
<h1 class="chapter">4. Statements</h1>

<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Pseudo-Statements">4.1 Pseudo Statements</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
</table>

<p>Statements (as in most algebraic languages) provide the sequencing of
expression evaluation.  In <code>bc</code> statements are executed &quot;as soon
as possible.&quot;  Execution happens when a newline in encountered and there
is one or more complete statements.  Due to this immediate execution,
newlines are very important in <code>bc</code>. In fact, both a semicolon
and a newline are used as statement separators.  An improperly placed
newline will cause a syntax error.  Because newlines are statement
separators, it is possible to hide a newline by using the backslash
character.  The sequence &quot;\&lt;nl&gt;&quot;, where &lt;nl&gt; is the newline appears to
<code>bc</code> as whitespace instead of a newline.  A statement list is a
series of statements separated by semicolons and newlines.  The
following is a list of <code>bc</code> statements and what they do: (Things
enclosed in brackets ( [ ] ) are optional parts of the statement.)
</p>
<dl compact="compact">
<dt> <var>expression</var></dt>
<dd><p>This statement does one of two things.  If the expression starts with
&quot;&lt;variable&gt; &lt;assignment&gt; ...&quot;, it is considered to be an assignment
statement.  If the expression is not an assignment statement, the
expression is evaluated and printed to the output.  After the number is
printed, a newline is printed.  For example, &quot;a=1&quot; is an assignment
statement and &quot;(a=1)&quot; is an expression that has an embedded assignment.
All numbers that are printed are printed in the base specified by the
variable <var>obase</var>. The legal values for <var>obase</var> are 2 through
BC_BASE_MAX (see section <a href="#Environment-Variables">Environment Variables</a>).  For bases 2 through 16,
the usual method of writing numbers is used.  For bases greater than 16,
<code>bc</code> uses a multi-character digit method of printing the numbers
where each higher base digit is printed as a base 10 number.  The
multi-character digits are separated by spaces.  Each digit contains the
number of characters required to represent the base ten value of
&quot;<var>obase</var> -1&quot;.  Since numbers are of arbitrary precision, some
numbers may not be printable on a single output line.  These long
numbers will be split across lines using the &quot;\&quot; as the last character
on a line.  The maximum number of characters printed per line is 70.
Due to the interactive nature of <code>bc</code>, printing a number causes
the side effect of assigning the printed value to the special variable
<var>last</var>. This allows the user to recover the last value printed
without having to retype the expression that printed the number.
Assigning to <var>last</var> is legal and will overwrite the last printed
value with the assigned value.  The newly assigned value will remain
until the next number is printed or another value is assigned to
<var>last</var>.  (Some installations may allow the use of a single period
(.) which is not part of a number as a short hand notation for for
<var>last</var>.)
</p>
</dd>
<dt> <var>string</var></dt>
<dd><p>The string is printed to the output.  Strings start with a double quote
character and contain all characters until the next double quote character.
All characters are taken literally, including any newline.  No newline
character is printed after the string.
</p>
</dd>
<dt> <var><code>print</code> <var>list</var></var></dt>
<dd><p>The <code>print</code> statement (an extension) provides another method of
output.  The <var>list</var> is a list of strings and expressions separated by
commas.  Each string or expression is printed in the order of the list.
No terminating newline is printed.  Expressions are evaluated and their
value is printed and assigned to the variable <code>last</code>. Strings in
the print statement are printed to the output and may contain special
characters.  Special characters start with the backslash character (\e).
The special characters recognized by <code>bc</code> are &quot;a&quot; (alert or
bell), &quot;b&quot; (backspace), &quot;f&quot; (form feed), &quot;n&quot; (newline), &quot;r&quot; (carriage
return), &quot;q&quot; (double quote), &quot;t&quot; (tab), and &quot;\e&quot; (backslash).  Any other
character following the backslash will be ignored.
</p>
</dd>
<dt> <var>{ statement_list }</var></dt>
<dd><p>This is the compound statement.  It allows multiple statements to be
grouped together for execution.
</p>
</dd>
<dt> <var><code>if</code> ( expression ) statement1 [<code>else</code> statement2]</var></dt>
<dd><p>The if statement evaluates the expression and executes statement1 or
statement2 depending on the value of the expression.  If the expression
is non-zero, statement1 is executed.  If statement2 is present and
the value of the expression is 0, then statement2 is executed.  (The
<code>else</code> clause is an extension.)
</p>
</dd>
<dt> <var><code>while</code> ( expression ) statement</var></dt>
<dd><p>The while statement will execute the statement while the expression
is non-zero.  It evaluates the expression before each execution of
the statement.   Termination of the loop is caused by a zero
expression value or the execution of a <code>break</code> statement.
</p>
</dd>
<dt> <var><code>for</code> ( [expression1] ; [expression2] ; [expression3] ) statement</var></dt>
<dd><p>The <code>for</code> statement controls repeated execution of the statement.
<var>Expression1</var> is evaluated before the loop.  <var>Expression2</var> is
evaluated before each execution of the statement.  If it is non-zero,
the statement is evaluated.  If it is zero, the loop is terminated.
After each execution of the statement, <var>expression3</var> is evaluated
before the reevaluation of expression2.  If <var>expression1</var> or
<var>expression3</var> are missing, nothing is evaluated at the point they
would be evaluated.  If <var>expression2</var> is missing, it is the same as
substituting the value 1 for <var>expression2</var>.  (The optional
expressions are an extension. POSIX <code>bc</code> requires all three
expressions.)  The following is equivalent code for the <code>for</code>
statement:
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">expression1;
while (expression2) {
   statement;
   expression3;
}
</pre></td></tr></table>

</dd>
<dt> <var><code>break</code></var></dt>
<dd><p>This statement causes a forced exit of the most recent enclosing <code>while</code>
statement or <code>for</code> statement.
</p>
</dd>
<dt> <var><code>continue</code></var></dt>
<dd><p>The <code>continue</code> statement (an extension)  causes the most recent enclosing
<code>for</code> statement to start the next iteration.
</p>
</dd>
<dt> <var><code>halt</code></var></dt>
<dd><p>The <code>halt</code> statement (an extension) is an executed statement that
causes the <code>bc</code> processor to quit only when it is executed.  For
example, &quot;if (0 == 1) halt&quot; will not cause <code>bc</code> to terminate
because the <code>halt</code> is not executed.
</p>
</dd>
<dt> <var><code>return</code></var></dt>
<dd><p>Return the value 0 from a function.  (See section <a href="#Functions">Functions</a>.)
</p>
</dd>
<dt> <var><code>return</code> ( expression )</var></dt>
<dd><p>Return the value of the expression from a function.  (See section <a href="#Functions">Functions</a>.)
As an extension, the parenthesis are not required.
</p></dd>
</dl>

<hr size="6">
<a name="Pseudo-Statements"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Statements" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Functions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Statements" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Statements" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Pseudo-Statements-1"></a>
<h2 class="section">4.1 Pseudo Statements</h2>

<p>These statements are not statements in the traditional sense.  They are
not executed statements.  Their function is performed at &quot;compile&quot; time.
</p>
<dl compact="compact">
<dt> <code>limits</code></dt>
<dd><p>Print the local limits enforced by the local version of <code>bc</code>.  This
is an extension.
</p>
</dd>
<dt> <code>quit</code></dt>
<dd><p>When the <code>quit</code> statement is read, the <code>bc</code> processor
is terminated, regardless of where the <code>quit</code> statement is found.  For
example, &quot;if (0 == 1) quit&quot; will cause <code>bc</code> to terminate.
</p>
</dd>
<dt> <code>warranty</code></dt>
<dd><p>Print a longer warranty notice.  This is an extension.
</p></dd>
</dl>

<hr size="6">
<a name="Functions"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Pseudo-Statements" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Math-Library-Functions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Statements" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Examples" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Functions-1"></a>
<h1 class="chapter">5. Functions</h1>

<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Math-Library-Functions">5.1 Math Library Functions</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
</table>

<p>Functions provide a method of defining a computation that can be
executed later.  Functions in <code>bc</code> always compute a value and
return it to the caller.  Function definitions are &quot;dynamic&quot; in the
sense that a function is undefined until a definition is encountered in
the input.  That definition is then used until another definition
function for the same name is encountered.  The new definition then
replaces the older definition.  A function is defined as follows:
</p>
<table><tr><td>&nbsp;</td><td><pre class="example"><code>define</code> <var>name</var> <code>(</code> <var>parameters</var> <code>)</code> <code>{</code> <var>newline</var>
    <var>auto_list   statement_list</var> <code>}</code>
</pre></td></tr></table>

<p>A function call is just an expression of the form
&quot;<code>name</code> <code>(</code><var>parameters</var><code>)</code>&quot;.
</p>
<p>Parameters are numbers or arrays (an extension).  In the function definition,
zero or more parameters are defined by listing their names separated by
commas.  All parameters  are call by value parameters.
Arrays are specified in the parameter definition by
the notation &quot;<var>name</var><code>[ ]</code>&quot;.   In the function call, actual parameters
are full expressions for number parameters.  The same notation is used
for passing arrays as for defining array parameters.  The named array is
passed by value to the function.  Since function definitions are dynamic,
parameter numbers and types are checked when a function is called.  Any
mismatch in number or types of parameters will cause a runtime error.
A runtime error will also occur for the call to an undefined function.
</p>
<p>The <var>auto_list</var> is an optional list of variables that are for
&quot;local&quot; use.  The syntax of the auto list (if present) is &quot;<code>auto</code>
<var>name</var>, ... ;&quot;.  (The semicolon is optional.)  Each <var>name</var> is
the name of an auto variable.  Arrays may be specified by using the
same notation as used in parameters.  These variables have their
values pushed onto a stack at the start of the function.  The
variables are then initialized to zero and used throughout the
execution of the function.  At function exit, these variables are
popped so that the original value (at the time of the function call)
of these variables are restored.  The parameters are really auto
variables that are initialized to a value provided in the function
call.  
Auto variables are different than traditional local variables
because if function A calls function B, B may access function
A&rsquo;s auto variables by just using the same name, unless function B has
called them auto variables.  Due to the fact that auto variables and
parameters are pushed onto a stack, <code>bc</code> supports recursive functions.
</p>
<p>The function body is a list of <code>bc</code> statements.  Again, statements
are separated by semicolons or newlines.  Return statements cause the
termination of a function and the return of a value.  There are two
versions of the return statement.  The first form, &quot;<code>return</code>&quot;, returns
the value 0 to the calling expression.  The second form, 
&quot;<code>return</code> ( <var>expression</var> )&quot;, computes the value of the expression
and returns that value to the calling expression.  There is an implied
&quot;<code>return</code> (0)&quot; at the end of every function.  This allows a function
to terminate and return 0 without an explicit <code>return</code> statement.
</p>
<p>Functions also change the usage of the variable <var>ibase</var>.  All
constants in the function body will be converted using the value of
<var>ibase</var> at the time of the function call.  Changes of <var>ibase</var>
will be ignored during the execution of the function except for the
standard function <code>read</code>, which will always use the current value
of <var>ibase</var> for conversion of numbers.
</p>
<p>Several extensions have been added to functions.  First, the format of
the definition has been slightly relaxed.  The standard requires the
opening brace be on the same line as the <code>define</code> keyword and all
other parts must be on following lines.  This version of <code>bc</code>
will allow any number of newlines before and after the opening brace of
the function.  For example, the following definitions are legal.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">   define d (n) { return (2*n); }
   define d (n)
       { return (2*n); }
</pre></td></tr></table>

<p>Functions may be defined as <code>void</code>.  A void
funtion returns no value and thus may not be used in any place that needs
a value.  A void function does not produce any output when called by itself
on an input line.  The key word <code>void</code> is placed between the key word
<code>define</code> and the function name.  For example, consider the following
session.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">define py (y) { print &quot;---&gt;&quot;, y, &quot;&lt;---&quot;, &quot;\n&quot;; }
define void px (x) { print &quot;---&gt;&quot;, x, &quot;&lt;---&quot;, &quot;\n&quot;; }
py(1)
---&gt;1&lt;---
0
px(1)
---&gt;1&lt;---
</pre></td></tr></table>

<p>Since <code>py</code> is not a void function, the call of <code>py(1)</code> prints
the desired output and then prints a second line that is the value of
the function.  Since the value of a function that is not given an
explicit return statement is zero, the zero is printed.  For <code>px(1)</code>,
no zero is printed because the function is a void function.
</p>
<p>Also, call by variable for arrays was added.  To declare a
call by variable array, the declaration of the array parameter in the
function definition looks like &quot;<code>*</code><var>name</var><code>[]</code>&quot;.  The call
to the function remains the same as call by value arrays.
</p>
<hr size="6">
<a name="Math-Library-Functions"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Functions" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Examples" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Functions" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Functions" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Examples" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Math-Library-Functions-1"></a>
<h2 class="section">5.1 Math Library Functions</h2>

<p>If <code>bc</code> is invoked with the <code>-l</code> option, a math library is
preloaded and the default <var>scale</var> is set to 20.  The math functions will
calculate their results to the scale set at the time of their call.  The
math library defines the following functions:
</p>
<dl compact="compact">
<dt> <code>s (<var>x</var>)</code></dt>
<dd><p>The sine of <var>x</var>, <var>x</var> is in radians.
</p>
</dd>
<dt> <code>c (<var>x</var>)</code></dt>
<dd><p>The cosine of <var>x</var>, <var>x</var> is in radians.
</p>
</dd>
<dt> <code>a (<var>x</var>)</code></dt>
<dd><p>The arctangent of <var>x</var>, arctangent returns radians.
</p>
</dd>
<dt> <code>l (<var>x</var>)</code></dt>
<dd><p>The natural logarithm of <var>x</var>.
</p>
</dd>
<dt> <code>e (<var>x</var>)</code></dt>
<dd><p>The exponential function of raising <var>e</var> to the value <var>x</var>.
</p>
</dd>
<dt> <code>j (<var>n,x</var>)</code></dt>
<dd><p>The Bessel function of integer order <var>n</var> of <var>x</var>.
</p></dd>
</dl>

<hr size="6">
<a name="Examples"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Math-Library-Functions" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Readline-and-Libedit-Options" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Functions" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Readline-and-Libedit-Options" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Examples-1"></a>
<h1 class="chapter">6. Examples</h1>

<p>In /bin/sh,  the following will assign the value of &quot;pi&quot; to the shell
variable <var>pi</var>.
</p><table><tr><td>&nbsp;</td><td><pre class="example">
pi=$(echo &quot;scale=10; 4*a(1)&quot; | bc -l)

</pre></td></tr></table>

<p>The following is the definition of the exponential function used in the
math library.  This function is written in POSIX <code>bc</code>.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">
scale = 20

/* Uses the fact that e^x = (e^(x/2))^2
   When x is small enough, we use the series:
     e^x = 1 + x + x^2/2! + x^3/3! + ...
*/

define e(x) {
  auto  a, d, e, f, i, m, v, z

  /* Check the sign of x. */
  if (x&lt;0) {
    m = 1
    x = -x
  } 

  /* Precondition x. */
  z = scale;
  scale = 4 + z + .44*x;
  while (x &gt; 1) {
    f += 1;
    x /= 2;
  }

  /* Initialize the variables. */
  v = 1+x
  a = x
  d = 1

  for (i=2; 1; i++) {
    e = (a *= x) / (d *= i)
    if (e == 0) {
      if (f&gt;0) while (f--)  v = v*v;
      scale = z
      if (m) return (1/v);
      return (v/1);
    }
    v += e
  }
}

</pre></td></tr></table>

<p>The following is code that uses the extended features of <code>bc</code> to
implement a simple program for calculating checkbook balances.  This
program is best kept in a file so that it can be used many times 
without having to retype it at every use.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">
scale=2
print &quot;\nCheck book program\n!&quot;
print &quot;  Remember, deposits are negative transactions.\n&quot;
print &quot;  Exit by a 0 transaction.\n\n&quot;

print &quot;Initial balance? &quot;; bal = read()
bal /= 1
print &quot;\n&quot;
while (1) {
  &quot;current balance = &quot;; bal
  &quot;transaction? &quot;; trans = read()
  if (trans == 0) break;
  bal -= trans
  bal /= 1
}
quit

</pre></td></tr></table>


<p>The following is the definition of the recursive factorial function.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">
define f (x) {
  if (x &lt;= 1) return (1);
  return (f(x-1) * x);
}

</pre></td></tr></table>

<hr size="6">
<a name="Readline-and-Libedit-Options"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Examples" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Comparison-with-Other-Implementations" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Examples" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Comparison-with-Other-Implementations" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Readline-and-Libedit-Options-1"></a>
<h1 class="chapter">7. Readline and Libedit Options</h1>

<p>GNU <code>bc</code> can be compiled (via a configure option) to use the GNU
<code>readline</code> input editor library or the BSD <code>libedit</code>
library.  This allows the user to do
more editing of lines before sending them to <code>bc</code>.  It also
allows for a history of previous lines typed.  When this option is
selected, <code>bc</code> has one more special variable.  This special
variable, <var>history</var> is the number of lines of history retained.  A
value of -1 means that an unlimited number of history lines are
retained.  This is the default value.  Setting the value of
<var>history</var> to a positive number restricts the number of history lines
to the number given.  The value of 0 disables the history feature.  For
more information, read the user manuals for the GNU <code>readline</code>,
<code>history</code> and BSD <code>libedit</code> libraries.  One can not
enable both <code>readline</code> and <code>libedit</code> at the same time.
</p>
<hr size="6">
<a name="Comparison-with-Other-Implementations"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Readline-and-Libedit-Options" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Limits" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Readline-and-Libedit-Options" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Limits" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Comparison-with-Other-Implementations-1"></a>
<h1 class="chapter">8. Comparison with Other Implementations</h1>

<p>This version of <code>bc</code> was implemented from the POSIX P1003.2/D11
draft and contains several differences and extensions relative to the
draft and traditional implementations.  It is not implemented in the
traditional way using <code>dc</code>.  This version is a single process
which parses and runs a byte code translation of the program.  There is
an &quot;undocumented&quot; option (-c) that causes the program to output the byte
code to the standard output instead of running it.  It was mainly used
for debugging the parser and preparing the math library.
</p>
<p>A major source of differences is extensions, where a feature is extended
to add more functionality and additions, where new features are added.
The following is the list of differences and extensions.
</p>
<dl compact="compact">
<dt> <var>LANG environment</var></dt>
<dd><p>This version does not conform to the POSIX standard in the processing
of the LANG environment variable and all environment variables starting
with LC_.
</p>
</dd>
<dt> <var>names</var></dt>
<dd><p>Traditional and POSIX <code>bc</code>
have single letter names for functions, variables and arrays.  They have
been extended to be multi-character names that start with a letter and
may contain letters, numbers and the underscore character.
</p>
</dd>
<dt> <var>Strings</var></dt>
<dd><p>Strings are not allowed to contain NUL characters.  POSIX says all characters
must be included in strings.
</p>
</dd>
<dt> <var>last</var></dt>
<dd><p>POSIX <code>bc</code> does not have a \fBlast variable.  Some implementations
of <code>bc</code> use the period (.) in a similar way.  
</p>
</dd>
<dt> <var>comparisons</var></dt>
<dd><p>POSIX <code>bc</code> allows comparisons only in the <code>if</code> statement,
the <code>while</code> statement, and the second expression of the <code>for</code>
statement.  Also, only one relational operation is allowed in each of
those statements.
</p>
</dd>
<dt> <var>if statement, else clause</var></dt>
<dd><p>POSIX <code>bc</code> does not have an <code>else</code> clause.
</p>
</dd>
<dt> <var>for statement</var></dt>
<dd><p>POSIX <code>bc</code> requires all expressions to be present in the
<code>for</code> statement.
</p>
</dd>
<dt> <var>&amp;&amp;, ||, !</var></dt>
<dd><p>POSIX <code>bc</code> does not have the logical operators.
</p>
</dd>
<dt> <var>read function</var></dt>
<dd><p>POSIX <code>bc</code> does not have a <code>read</code> function.
</p>
</dd>
<dt> <var>print statement</var></dt>
<dd><p>POSIX <code>bc</code> does not have a <code>print</code> statement.
</p>
</dd>
<dt> <var>continue statement</var></dt>
<dd><p>POSIX <code>bc</code> does not have a continue statement.
</p>
</dd>
<dt> <var>array parameters</var></dt>
<dd><p>POSIX <code>bc</code> does not (currently) support array parameters in full.
The POSIX grammar allows for arrays in function definitions, but does
not provide a method to specify an array as an actual parameter.  (This
is most likely an oversight in the grammar.)  Traditional implementations
of <code>bc</code> have only call by value array parameters.
</p>
</dd>
<dt> <var>function format</var></dt>
<dd><p>POSIX <code>bc</code> requires the opening brace on the same line as the 
<code>define</code> key word and the <code>auto</code> statement on the next line.
</p>
</dd>
<dt> <var>=+, =-, =*, =/, =%, =^</var></dt>
<dd><p>POSIX <code>bc</code> does not require these &quot;old style&quot; assignment
operators to be defined.  This version may allow these &quot;old style&quot;
assignments.  Use the <code>limits</code> statement to see if the installed
version supports them.  If it does support the &quot;old style&quot; assignment
operators, the statement &quot;a =- 1&quot; will decrement <code>a</code> by 1 instead
of setting <code>a</code> to the value -1.
</p>
</dd>
<dt> <var>spaces in numbers</var></dt>
<dd><p>Other implementations of <code>bc</code> allow spaces in numbers.  For example,
&quot;x=1 3&quot; would assign the value 13 to the variable x.  The same statement
would cause a syntax error in this version of <code>bc</code>.
</p>
</dd>
<dt> <var>errors and execution</var></dt>
<dd><p>This implementation varies from other implementations in terms of what
code will be executed when syntax and other errors are found in the
program.  If a syntax error is found in a function definition, error
recovery tries to find the beginning of a statement and continue to
parse the function.  Once a syntax error is found in the function, the
function will not be callable and becomes undefined.
Syntax errors in the interactive execution code will invalidate the
current execution block.  The execution block is terminated by an
end of line that appears after a complete sequence of statements.
For example, 
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">a = 1
b = 2
</pre></td></tr></table>

<p>has two execution blocks and
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">{ a = 1
  b = 2 }
</pre></td></tr></table>

<p>has one execution block.  Any runtime error will terminate the execution
of the current execution block.  A runtime warning will not terminate the
current execution block.
</p>
</dd>
<dt> <var>Interrupts</var></dt>
<dd><p>During an interactive session, the SIGINT signal (usually generated by
the control-C character from the terminal) will cause execution of the
current execution block to be interrupted.  It will display a &quot;runtime&quot;
error indicating which function was interrupted.  After all runtime
structures have been cleaned up, a message will be printed to notify the
user that <code>bc</code> is ready for more input.  All previously defined
functions remain defined and the value of all non-auto variables are the
value at the point of interruption.  All auto variables and function
parameters are removed during the clean up process.  During a
non-interactive session, the SIGINT signal will terminate the entire run
of <code>bc</code>.
</p></dd>
</dl>

<hr size="6">
<a name="Limits"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Comparison-with-Other-Implementations" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Environment-Variables" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Comparison-with-Other-Implementations" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Environment-Variables" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Limits-1"></a>
<h1 class="chapter">9. Limits</h1>

<p>The following are the limits currently in place for this <code>bc</code>
processor.  Some of them may have been changed by an installation.  Use
the <code>limits</code> statement to see the actual values.
</p>
<dl compact="compact">
<dt> <code>BC_BASE_MAX</code></dt>
<dd><p>The maximum output base is currently set at 999.  The maximum input base
is 16.
</p>
</dd>
<dt> <code>BC_DIM_MAX</code></dt>
<dd><p>This is currently an arbitrary limit of 65535 as distributed.  Your
installation may be different.
</p>
</dd>
<dt> <code>BC_SCALE_MAX</code></dt>
<dd><p>The number of digits after the decimal point is limited to INT_MAX digits.
Also, the number of digits before the decimal point is limited to INT_MAX
digits.
</p>
</dd>
<dt> <code>BC_STRING_MAX</code></dt>
<dd><p>The limit on the number of characters in a string is INT_MAX characters.
</p>
</dd>
<dt> <code>exponent</code></dt>
<dd><p>The value of the exponent in the raise operation (^) is limited to LONG_MAX.
</p>
</dd>
<dt> <code>multiply</code></dt>
<dd><p>The multiply routine may yield incorrect results if a number
has more than LONG_MAX / 90 total digits.  For 32 bit longs, this number is
23,860,929 digits.
</p>
</dd>
<dt> <code>variable names</code></dt>
<dd><p>The current limit on the number of unique names is 32767 for each of
simple variables, arrays and functions.
</p></dd>
</dl>

<hr size="6">
<a name="Environment-Variables"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Limits" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[ &gt; ]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Limits" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[ &gt;&gt; ]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Environment-Variables-1"></a>
<h1 class="chapter">10. Environment Variables</h1>

<p>The following environment variables are processed by <code>bc</code>:
</p>
<dl compact="compact">
<dt> <code>POSIXLY_CORRECT</code></dt>
<dd><p>This is the same as the -s option (see section <a href="#Command-Line-Options">Command Line Options</a>).
</p>
</dd>
<dt> <code>BC_ENV_ARGS</code></dt>
<dd><p>This is another mechanism to get arguments to <code>bc</code>.  The format
is the same as the command line arguments.  These arguments are
processed first, so any files listed in the environment arguments are
processed before any command line argument files.  This allows the user
to set up &quot;standard&quot; options and files to be processed at every
invocation of <code>bc</code>.  The files in the environment variables
would typically contain function definitions for functions the user
wants defined every time <code>bc</code> is run.
</p>
</dd>
<dt> <code>BC_LINE_LENGTH</code></dt>
<dd><p>This should be an integer specifying the number of characters in an
output line for numbers. This includes the backslash and newline
characters for long numbers. As an extension, the value of zero disables the 
multi-line feature.  Any other value of this variable that is less than
3 sets the line length to 70.
</p></dd>
</dl>

<hr size="6">
<a name="SEC_Contents"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>Table of Contents</h1>
<div class="contents">

<ul class="toc">
  <li><a name="toc-Introduction-1" href="#Introduction">1. Introduction</a>
  <ul class="toc">
    <li><a name="toc-Description-1" href="#Description">1.1 Description</a></li>
    <li><a name="toc-Command-Line-Options-1" href="#Command-Line-Options">1.2 Command Line Options</a></li>
  </ul></li>
  <li><a name="toc-Basic-Elements-1" href="#Basic-Elements">2. Basic Elements</a>
  <ul class="toc">
    <li><a name="toc-Numbers-1" href="#Numbers">2.1 Numbers</a></li>
    <li><a name="toc-Variables-1" href="#Variables">2.2 Variables</a></li>
    <li><a name="toc-Comments-1" href="#Comments">2.3 Comments</a></li>
  </ul></li>
  <li><a name="toc-Expressions-1" href="#Expressions">3. Expressions</a>
  <ul class="toc">
    <li><a name="toc-About-Expressions-and-Special-Variables-1" href="#About-Expressions-and-Special-Variables">3.1 About Expressions and Special Variables</a></li>
    <li><a name="toc-Basic-Expressions-1" href="#Basic-Expressions">3.2 Basic Expressions</a></li>
    <li><a name="toc-Relational-Expressions-1" href="#Relational-Expressions">3.3 Relational Expressions</a></li>
    <li><a name="toc-Boolean-Expressions-1" href="#Boolean-Expressions">3.4 Boolean Expressions</a></li>
    <li><a name="toc-Precedence-1" href="#Precedence">3.5 Precedence</a></li>
    <li><a name="toc-Special-Expressions-1" href="#Special-Expressions">3.6 Special Expressions</a></li>
  </ul></li>
  <li><a name="toc-Statements-1" href="#Statements">4. Statements</a>
  <ul class="toc">
    <li><a name="toc-Pseudo-Statements-1" href="#Pseudo-Statements">4.1 Pseudo Statements</a></li>
  </ul></li>
  <li><a name="toc-Functions-1" href="#Functions">5. Functions</a>
  <ul class="toc">
    <li><a name="toc-Math-Library-Functions-1" href="#Math-Library-Functions">5.1 Math Library Functions</a></li>
  </ul></li>
  <li><a name="toc-Examples-1" href="#Examples">6. Examples</a></li>
  <li><a name="toc-Readline-and-Libedit-Options-1" href="#Readline-and-Libedit-Options">7. Readline and Libedit Options</a></li>
  <li><a name="toc-Comparison-with-Other-Implementations-1" href="#Comparison-with-Other-Implementations">8. Comparison with Other Implementations</a></li>
  <li><a name="toc-Limits-1" href="#Limits">9. Limits</a></li>
  <li><a name="toc-Environment-Variables-1" href="#Environment-Variables">10. Environment Variables</a></li>
</ul>
</div>
<hr size="1">
<a name="SEC_About"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[Index]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>About This Document</h1>
<p>
  This document was generated by <em>Build Daemon user</em> on <em>December 21, 2009</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.82</em></a>.
</p>
<p>
  The buttons in the navigation panels have the following meaning:
</p>
<table border="1">
  <tr>
    <th> Button </th>
    <th> Name </th>
    <th> Go to </th>
    <th> From 1.2.3 go to</th>
  </tr>
  <tr>
    <td align="center"> [ &lt; ] </td>
    <td align="center">Back</td>
    <td>Previous section in reading order</td>
    <td>1.2.2</td>
  </tr>
  <tr>
    <td align="center"> [ &gt; ] </td>
    <td align="center">Forward</td>
    <td>Next section in reading order</td>
    <td>1.2.4</td>
  </tr>
  <tr>
    <td align="center"> [ &lt;&lt; ] </td>
    <td align="center">FastBack</td>
    <td>Beginning of this chapter or previous chapter</td>
    <td>1</td>
  </tr>
  <tr>
    <td align="center"> [ Up ] </td>
    <td align="center">Up</td>
    <td>Up section</td>
    <td>1.2</td>
  </tr>
  <tr>
    <td align="center"> [ &gt;&gt; ] </td>
    <td align="center">FastForward</td>
    <td>Next chapter</td>
    <td>2</td>
  </tr>
  <tr>
    <td align="center"> [Top] </td>
    <td align="center">Top</td>
    <td>Cover (top) of document</td>
    <td> &nbsp; </td>
  </tr>
  <tr>
    <td align="center"> [Contents] </td>
    <td align="center">Contents</td>
    <td>Table of contents</td>
    <td> &nbsp; </td>
  </tr>
  <tr>
    <td align="center"> [Index] </td>
    <td align="center">Index</td>
    <td>Index</td>
    <td> &nbsp; </td>
  </tr>
  <tr>
    <td align="center"> [ ? ] </td>
    <td align="center">About</td>
    <td>About (help)</td>
    <td> &nbsp; </td>
  </tr>
</table>

<p>
  where the <strong> Example </strong> assumes that the current position is at <strong> Subsubsection One-Two-Three </strong> of a document of the following structure:
</p>

<ul>
  <li> 1. Section One
    <ul>
      <li>1.1 Subsection One-One
        <ul>
          <li>...</li>
        </ul>
      </li>
      <li>1.2 Subsection One-Two
        <ul>
          <li>1.2.1 Subsubsection One-Two-One</li>
          <li>1.2.2 Subsubsection One-Two-Two</li>
          <li>1.2.3 Subsubsection One-Two-Three &nbsp; &nbsp;
            <strong>&lt;== Current Position </strong></li>
          <li>1.2.4 Subsubsection One-Two-Four</li>
        </ul>
      </li>
      <li>1.3 Subsection One-Three
        <ul>
          <li>...</li>
        </ul>
      </li>
      <li>1.4 Subsection One-Four</li>
    </ul>
  </li>
</ul>

<hr size="1">
<p>
 <font size="-1">
  This document was generated by <em>Build Daemon user</em> on <em>December 21, 2009</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.82</em></a>.
 </font>
 <br>

</p>
</body>
</html>