This file is indexed.

/usr/share/doc/dc/dc.html is in dc 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
<!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>dc, an arbitrary precision calculator</title>

<meta name="description" content="dc, an arbitrary precision calculator">
<meta name="keywords" content="dc, an arbitrary precision calculator">
<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">

<p>This file documents <code>dc</code>, an arbitrary precision calculator.
</p>
<p>Published by the Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor
Boston, MA 02110-1301  USA
</p>
<p>Copyright (C) 1984, 1994, 1997, 1998, 2000, 2005, 2006 Free Software Foundation, Inc.
</p>
<p>Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.
</p>

<p>Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the entire
resulting derived work is distributed under the terms of a permission
notice identical to this one.
</p>
<p>Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions,
except that this permission notice may be stated in a translation approved
by the Foundation.
</p>


<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">dc, an arbitrary precision calculator</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="#Invocation">2. Invocation</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Printing-Commands">3. Printing Commands</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Arithmetic">4. Arithmetic</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Stack-Control">5. Stack Control</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Registers">6. Registers</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Parameters">7. Parameters</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Strings">8. Strings</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Status-Inquiry">9. Status Inquiry</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Miscellaneous">10. Miscellaneous</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">               Other commands
</td></tr>
<tr><td align="left" valign="top"><a href="#Reporting-bugs">11. Reporting bugs</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="#Invocation" 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="#Invocation" 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>

<p><code>dc</code> is a reverse-polish desk calculator
which supports unlimited precision arithmetic.
It also allows you to define and call macros.
Normally <code>dc</code> reads from the standard input;
if any command arguments are given to it, they are filenames,
and <code>dc</code> reads and executes the contents of the files
instead of reading from standard input.
All normal output is to standard output;
all error messages are written to standard error.
</p>
<p>To exit, use &lsquo;<samp>q</samp>&rsquo;.
<kbd>C-c</kbd>
(or whatever other keystroke your system uses to generate a <code>SIGINT</code>)
does not exit;
it is used to abort macros that are looping, etc.
</p>
<p>A reverse-polish calculator stores numbers on a stack.
Entering a number pushes it on the stack.
Arithmetic operations pop arguments off the stack and push the results.
</p>
<p>To enter a number in <code>dc</code>, type the digits (using upper
case letters <code>A</code> through <code>F</code> as &quot;digits&quot; when working
with input bases greater than ten),
with an optional decimal point.
Exponential notation is not supported.
To enter a negative number, begin the number with &lsquo;<samp>_</samp>&rsquo;.
&lsquo;<samp>-</samp>&rsquo; cannot be used for this, as it is a binary operator
for subtraction instead.
To enter two numbers in succession,
separate them with spaces or newlines;
these have no meaning as commands.
</p>
<hr size="6">
<a name="Invocation"></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="#Printing-Commands" 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="#Printing-Commands" 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="Invocation-1"></a>
<h1 class="chapter">2. Invocation</h1>

<p><code>dc</code> may be invoked with the following command-line options:
</p><dl compact="compact">
<dt> &lsquo;<samp>-e <var>expr</var></samp>&rsquo;</dt>
<dt> &lsquo;<samp>--expression=<var>expr</var></samp>&rsquo;</dt>
<dd><p>Evaluate <var>expr</var> as <code>dc</code> commands.
</p>
</dd>
<dt> &lsquo;<samp>-f <var>file</var></samp>&rsquo;</dt>
<dt> &lsquo;<samp>--file=<var>file</var></samp>&rsquo;</dt>
<dd><p>Read and evaluate <code>dc</code> commands from <var>file</var>.
</p>
</dd>
<dt> &lsquo;<samp>-h</samp>&rsquo;</dt>
<dt> &lsquo;<samp>--help</samp>&rsquo;</dt>
<dd><p>Print a usage message summarizing the command-line options, then exit.
</p>
</dd>
<dt> &lsquo;<samp>-V</samp>&rsquo;</dt>
<dt> &lsquo;<samp>--version</samp>&rsquo;</dt>
<dd><p>Print the version information for this program, then exit.
</p></dd>
</dl>

<p>If any command-line parameters remain after processing the options,
these parameters are interpreted as additional <var>file</var>s whose
contents are read and evaluated.
A file name of <code>-</code> refers to the standard input stream.
If no <code>-e</code> option was specified, and no files were specified,
then the standard input will be read for commands to evaluate.
</p>
<hr size="6">
<a name="Printing-Commands"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Invocation" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Arithmetic" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Invocation" 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="#Arithmetic" 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="Printing-Commands-1"></a>
<h1 class="chapter">3. Printing Commands</h1>

<dl compact="compact">
<dt> &lsquo;<samp>p</samp>&rsquo;</dt>
<dd><p>Prints the value on the top of the stack,
without altering the stack.
A newline is printed after the value.
</p>
</dd>
<dt> &lsquo;<samp>n</samp>&rsquo;</dt>
<dd><p>Prints the value on the top of the stack, popping it off,
and does not print a newline after.
(This command is a GNU extension.)
</p>
</dd>
<dt> &lsquo;<samp>P</samp>&rsquo;</dt>
<dd><p>Pops off the value on top of the stack.
If it it a string, it is simply printed without a trailing newline.
Otherwise it is a number, and the integer portion of its absolute
value is printed out as a &quot;base (UCHAR_MAX+1)&quot; byte stream.
Assuming that (UCHAR_MAX+1) is 256
(as it is on most machines with 8-bit bytes),
the sequence
<code>KSK0k1/ _1Ss[ls*]Sxd0&gt;x
[256~Ssd0&lt;x]dsxx
sx[q]Sq[Lsd0&gt;qaPlxx]dsxx
sx0sqLqsxLxLK+k</code>
could also accomplish this function.
(Much of the complexity of the above native-dc code is due
to the ~ computing the characters backwards,
and the desire to ensure that all registers wind up back
in their original states.)
(Details of the behavior with a number are a GNU extension.
Traditional <code>dc</code> happened to &quot;support&quot; similar functionality
for a limited range of inputs as an accidental side-effect of its
internal representation of numbers.)
</p>
</dd>
<dt> &lsquo;<samp>f</samp>&rsquo;</dt>
<dd><p>Prints the entire contents of the stack
without altering anything.
This is a good command to use if you are lost or want
to figure out what the effect of some command has been.
</p></dd>
</dl>

<p>All numeric output is split to fit within 70 columns, by default.
When a number is broken up in this way, the split is indicated
by a &quot;\&quot; at the end of the to-be-continued output lines.
The column width at which output is split can be overridden
by setting the <var>DC_LINE_LENGTH</var> environment variable to
the desired width.
A <var>DC_LINE_LENGTH</var> of 0 (zero) disables the line-split
feature altogether.
Invalid values of <var>DC_LINE_LENGTH</var> are silently ignored.
(The <var>DC_LINE_LENGTH</var> variable is a GNU extension.)
</p>
<hr size="6">
<a name="Arithmetic"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Printing-Commands" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Stack-Control" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Printing-Commands" 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="#Stack-Control" 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="Arithmetic-1"></a>
<h1 class="chapter">4. Arithmetic</h1>

<dl compact="compact">
<dt> &lsquo;<samp>+</samp>&rsquo;</dt>
<dd><p>Pops two values off the stack, adds them, and pushes the result.
The precision of the result is determined only
by the values of the arguments, and is enough to be exact.
</p>
</dd>
<dt> &lsquo;<samp>-</samp>&rsquo;</dt>
<dd><p>Pops two values, subtracts the first one popped
from the second one popped, and pushes the result.
</p>
</dd>
<dt> &lsquo;<samp>*</samp>&rsquo;</dt>
<dd><p>Pops two values, multiplies them, and pushes the result.
The number of fraction digits in the result is the largest of
the precision value,
the number of fraction digits in the multiplier,
or the number of fraction digits in the multiplicand;
but in no event exceeding the number of digits required for
an exact result.
</p>
</dd>
<dt> &lsquo;<samp>/</samp>&rsquo;</dt>
<dd><p>Pops two values, divides the second one popped
from the first one popped, and pushes the result.
The number of fraction digits is specified by the precision value.
</p>
</dd>
<dt> &lsquo;<samp>%</samp>&rsquo;</dt>
<dd><p>Pops two values,
computes the remainder of the division that
the &lsquo;<samp>/</samp>&rsquo; command would do,
and pushes that.
The value computed is the same as that computed by
the sequence <code>Sd dld/ Ld*-</code> .
</p>
</dd>
<dt> &lsquo;<samp>~</samp>&rsquo;</dt>
<dd><p>Pops two values,
divides the second one popped from the first one popped.
The quotient is pushed first, and the remainder is pushed next.
The number of fraction digits used in the division
is specified by the precision value.
(The sequence <code>SdSn lnld/ LnLd%</code> could also accomplish
this function, with slightly different error checking.)
(This command is a GNU extension.)
</p>
</dd>
<dt> &lsquo;<samp>^</samp>&rsquo;</dt>
<dd><p>Pops two values and exponentiates,
using the first value popped as the exponent
and the second popped as the base.
The fraction part of the exponent is ignored.
The precision value specifies the number of fraction
digits in the result.
</p>
</dd>
<dt> &lsquo;<samp>|</samp>&rsquo;</dt>
<dd><p>Pops three values and computes a modular exponentiation.
The first value popped is used as the reduction modulus;
this value must be a non-zero number,
and the result may not be accurate if the modulus
is not an integer.
The second popped is used as the exponent;
this value must be a non-negative number,
and any fractional part of this exponent will be ignored.
The third value popped is the base which gets exponentiated,
which should be an integer.
For small integers this is like the sequence <code>Sm^Lm%</code>,
but, unlike <code>^</code>,
this command will work with arbritrarily large exponents.
(This command is a GNU extension.)
</p>
</dd>
<dt> &lsquo;<samp>v</samp>&rsquo;</dt>
<dd><p>Pops one value, computes its square root, and pushes that.
The precision value specifies the number of fraction digits
in the result.
</p></dd>
</dl>

<p>Most arithmetic operations are affected by the <em>precision value</em>,
which you can set with the &lsquo;<samp>k</samp>&rsquo; command.
The default precision value is zero,
which means that all arithmetic except for
addition and subtraction produces integer results.
</p>
<hr size="6">
<a name="Stack-Control"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Arithmetic" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Registers" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Arithmetic" 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="#Registers" 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="Stack-Control-1"></a>
<h1 class="chapter">5. Stack Control</h1>

<dl compact="compact">
<dt> &lsquo;<samp>c</samp>&rsquo;</dt>
<dd><p>Clears the stack, rendering it empty.
</p>
</dd>
<dt> &lsquo;<samp>d</samp>&rsquo;</dt>
<dd><p>Duplicates the value on the top of the stack,
pushing another copy of it.
Thus, &lsquo;<samp>4d*p</samp>&rsquo; computes 4 squared and prints it.
</p>
</dd>
<dt> &lsquo;<samp>r</samp>&rsquo;</dt>
<dd><p>Reverses the order of (swaps) the top two values on the stack.
(This can also be accomplished with the sequence <code>SaSbLaLb</code>.)
(This command is a GNU extension.)
</p></dd>
</dl>

<hr size="6">
<a name="Registers"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Stack-Control" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Parameters" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Stack-Control" 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="#Parameters" 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="Registers-1"></a>
<h1 class="chapter">6. Registers</h1>

<p><code>dc</code> provides at least 256 memory registers<a name="DOCF1" href="#FOOT1">(1)</a>,
each named by a single character.
You can store a number in a register and retrieve it later.
</p>
<dl compact="compact">
<dt> &lsquo;<samp>s<var>r</var></samp>&rsquo;</dt>
<dd><p>Pop the value off the top of the stack and
store it into register <var>r</var>.
</p>
</dd>
<dt> &lsquo;<samp>l<var>r</var></samp>&rsquo;</dt>
<dd><p>Copy the value in register <var>r</var>,
and push it onto the stack.
This does not alter the contents of <var>r</var>.
</p>
<p>Each register also contains its own stack.
The current register value is the top of the register&rsquo;s stack.
</p>
</dd>
<dt> &lsquo;<samp>S<var>r</var></samp>&rsquo;</dt>
<dd><p>Pop the value off the top of the (main) stack and
push it onto the stack of register <var>r</var>.
The previous value of the register becomes inaccessible.
</p>
</dd>
<dt> &lsquo;<samp>L<var>r</var></samp>&rsquo;</dt>
<dd><p>Pop the value off the top of register <var>r</var>&rsquo;s stack
and push it onto the main stack.
The previous value in register <var>r</var>&rsquo;s stack, if any,
is now accessible via the &lsquo;<samp>l<var>r</var></samp>&rsquo; command.
</p></dd>
</dl>

<hr size="6">
<a name="Parameters"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Registers" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Strings" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Registers" 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="#Strings" 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="Parameters-1"></a>
<h1 class="chapter">7. Parameters</h1>

<p><code>dc</code> has three parameters that control its operation:
the precision, the input radix, and the output radix.
The precision specifies the number of fraction digits
to keep in the result of most arithmetic operations.
The input radix controls the interpretation of numbers typed in;
<em>all</em> numbers typed in use this radix.
The output radix is used for printing numbers.
</p>
<p>The input and output radices are separate parameters;
you can make them unequal, which can be useful or confusing.
The input radix must be between 2 and 16 inclusive.
The output radix must be at least 2.
The precision must be zero or greater.
The precision is always measured in decimal digits,
regardless of the current input or output radix.
</p>
<dl compact="compact">
<dt> &lsquo;<samp>i</samp>&rsquo;</dt>
<dd><p>Pops the value off the top of the stack
and uses it to set the input radix.
</p>
</dd>
<dt> &lsquo;<samp>o</samp>&rsquo;</dt>
<dd><p>Pops the value off the top of the stack
and uses it to set the output radix.
</p>
</dd>
<dt> &lsquo;<samp>k</samp>&rsquo;</dt>
<dd><p>Pops the value off the top of the stack
and uses it to set the precision.
</p>
</dd>
<dt> &lsquo;<samp>I</samp>&rsquo;</dt>
<dd><p>Pushes the current input radix on the stack.
</p>
</dd>
<dt> &lsquo;<samp>O</samp>&rsquo;</dt>
<dd><p>Pushes the current output radix on the stack.
</p>
</dd>
<dt> &lsquo;<samp>K</samp>&rsquo;</dt>
<dd><p>Pushes the current precision on the stack.
</p>
</dd>
</dl>

<hr size="6">
<a name="Strings"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Parameters" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Status-Inquiry" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Parameters" 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="#Status-Inquiry" 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="Strings-1"></a>
<h1 class="chapter">8. Strings</h1>

<p><code>dc</code> has a limited ability
to operate on strings as well as on numbers;
the only things you can do with strings are print them
and execute them as macros
(which means that the contents of the string are processed
as <code>dc</code> commands).
Both registers and the stack can hold strings,
and <code>dc</code> always knows whether any given object is
a string or a number.
Some commands such as arithmetic operations demand numbers
as arguments and print errors if given strings.
Other commands can accept either a number or a string;
for example, the &lsquo;<samp>p</samp>&rsquo; command can accept either and prints the object
according to its type.
</p>
<dl compact="compact">
<dt> &lsquo;<samp>[<var>characters</var>]</samp>&rsquo;</dt>
<dd><p>Makes a string containing <var>characters</var> and pushes it on the stack.
For example, &lsquo;<samp>[foo]P</samp>&rsquo; prints the characters &lsquo;<samp>foo</samp>&rsquo;
(with no newline).
Note that all square brackets (&lsquo;<samp>[</samp>&rsquo;s and &lsquo;<samp>]</samp>&rsquo;s) must be balanced;
there is no mechanism provided for handling unbalanced square brackets.
</p>
</dd>
<dt> &lsquo;<samp>a</samp>&rsquo;</dt>
<dd><p>The mnemonic for this is somewhat erroneous: asciify.
The top-of-stack is popped.
If it was a number, then the low-order byte of this number
is converted into a 1-character string
and pushed onto the stack.
Otherwise the top-of-stack was a string,
and the first character of that string is pushed back.
(This command is a GNU extension.)
</p>
</dd>
<dt> &lsquo;<samp>x</samp>&rsquo;</dt>
<dd><p>Pops a value off the stack and executes it as a macro.
Normally it should be a string;
if it is a number, it is simply pushed back onto the stack.
For example, &lsquo;<samp>[1p]x</samp>&rsquo; executes the macro &lsquo;<samp>1p</samp>&rsquo;,
which pushes 1 on the stack and prints &lsquo;<samp>1</samp>&rsquo; on a separate line.
</p>
<p>Macros are most often stored in registers;
&lsquo;<samp>[1p]sa</samp>&rsquo; stores a macro to print &lsquo;<samp>1</samp>&rsquo; into register &lsquo;<samp>a</samp>&rsquo;,
and &lsquo;<samp>lax</samp>&rsquo; invokes the macro.
</p>
</dd>
<dt> &lsquo;<samp>&gt;<var>r</var></samp>&rsquo;</dt>
<dd><p>Pops two values off the stack and compares them
assuming they are numbers,
executing the contents of register <var>r</var> as a macro
if the original top-of-stack is greater.
Thus, &lsquo;<samp>1 2&gt;a</samp>&rsquo; will invoke register &lsquo;<samp>a</samp>&rsquo;&rsquo;s contents
and &lsquo;<samp>2 1&gt;a</samp>&rsquo; will not.
</p>
</dd>
<dt> &lsquo;<samp>!&gt;<var>r</var></samp>&rsquo;</dt>
<dd><p>Similar but invokes the macro if the original top-of-stack is not greater
(is less than or equal to) what was the second-to-top.
</p>
</dd>
<dt> &lsquo;<samp>&lt;<var>r</var></samp>&rsquo;</dt>
<dd><p>Similar but invokes the macro if the original top-of-stack is less.
</p>
</dd>
<dt> &lsquo;<samp>!&lt;<var>r</var></samp>&rsquo;</dt>
<dd><p>Similar but invokes the macro if the original top-of-stack is not less
(is greater than or equal to) what was the second-to-top.
</p>
</dd>
<dt> &lsquo;<samp>=<var>r</var></samp>&rsquo;</dt>
<dd><p>Similar but invokes the macro if the two numbers popped are equal.
</p>
</dd>
<dt> &lsquo;<samp>!=<var>r</var></samp>&rsquo;</dt>
<dd><p>Similar but invokes the macro if the two numbers popped are not equal.
</p>
</dd>
<dt> &lsquo;<samp>?</samp>&rsquo;</dt>
<dd><p>Reads a line from the terminal and executes it.
This command allows a macro to request input from the user.
</p>
</dd>
<dt> &lsquo;<samp>q</samp>&rsquo;</dt>
<dd><p>During the execution of a macro,
this command exits from the macro and also from the macro which invoked it.
If called from the top level,
or from a macro which was called directly from the top level,
the &lsquo;<samp>q</samp>&rsquo; command will cause <code>dc</code> to exit.
</p>
</dd>
<dt> &lsquo;<samp>Q</samp>&rsquo;</dt>
<dd><p>Pops a value off the stack and uses it as a count
of levels of macro execution to be exited.
Thus, &lsquo;<samp>3Q</samp>&rsquo; exits three levels.
</p></dd>
</dl>

<hr size="6">
<a name="Status-Inquiry"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Strings" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Miscellaneous" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Strings" 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="#Miscellaneous" 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="Status-Inquiry-1"></a>
<h1 class="chapter">9. Status Inquiry</h1>

<dl compact="compact">
<dt> &lsquo;<samp>Z</samp>&rsquo;</dt>
<dd><p>Pops a value off the stack,
calculates the number of digits it has
(or number of characters, if it is a string)
and pushes that number.
</p>
<p>Note that the digit count for a number does
<em>not</em> include any leading zeros,
even if those appear to the right of the radix point.
This may seem a bit strange at first,
but it is compatable with historical implementations of <code>dc</code>,
and can be argued to be useful for computing the magnitude of a value:
<code>dSaXLaZ-</code> will compute the power-of-ten multiplier
which would be needed to shift the decimal point
to be immediately before the leftmost non-zero digit.
</p>
</dd>
<dt> &lsquo;<samp>X</samp>&rsquo;</dt>
<dd><p>Pops a value off the stack,
calculates the number of fraction digits it has,
and pushes that number.
For a string, the value pushed is
0.
</p>
</dd>
<dt> &lsquo;<samp>z</samp>&rsquo;</dt>
<dd><p>Pushes the current stack depth:
the number of objects on the stack
before the execution of the &lsquo;<samp>z</samp>&rsquo; command.
</p></dd>
</dl>

<hr size="6">
<a name="Miscellaneous"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Status-Inquiry" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Reporting-bugs" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Status-Inquiry" 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="#Reporting-bugs" 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="Miscellaneous-1"></a>
<h1 class="chapter">10. Miscellaneous</h1>

<dl compact="compact">
<dt> &lsquo;<samp>!</samp>&rsquo;</dt>
<dd><p>Will run the rest of the line as a system command.
Note that parsing of the !&lt;, !=, and !&gt; commands take precidence,
so if you want to run a command starting with &lt;, =, or &gt; you will
need to add a space after the !.
</p>
</dd>
<dt> &lsquo;<samp>#</samp>&rsquo;</dt>
<dd><p>Will interpret the rest of the line as a comment.
(This command is a GNU extension.)
</p>
</dd>
<dt> &lsquo;<samp>:<var>r</var></samp>&rsquo;</dt>
<dd><p>Will pop the top two values off of the stack.
The old second-to-top value will be stored in the array <var>r</var>,
indexed by the old top-of-stack value.
</p>
</dd>
<dt> &lsquo;<samp>;<var>r</var></samp>&rsquo;</dt>
<dd><p>Pops the top-of-stack and uses it as an index into
the array <var>r</var>.
The selected value is then pushed onto the stack.
</p></dd>
</dl>

<p>Note that each stacked instance of a register has its own
array associated with it.
Thus &lsquo;<samp>1 <var>0:a</var> 0S<var>a</var> 2 <var>0:a</var> L<var>a</var> <var>0;a</var>p</samp>&rsquo;
will print 1, because the 2 was stored in an instance of <var>0:a</var>
that was later popped.
</p>
<hr size="6">
<a name="Reporting-bugs"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Miscellaneous" 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="#Miscellaneous" 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="Reporting-bugs-1"></a>
<h1 class="chapter">11. Reporting bugs</h1>

<p>Email bug reports to <a href="mailto:bug-dc@gnu.org">bug-dc@gnu.org</a>.
</p><hr size="6">
<a name="SEC_Foot"></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>Footnotes</h1>
<h3><a name="FOOT1" href="#DOCF1">(1)</a></h3>
<p>The
exact number of registers provided by <code>dc</code> depends
on the range of an <code>unsigned char</code> in the C compiler
used to create the <code>dc</code> executable.
</p><hr size="1">
<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></li>
  <li><a name="toc-Invocation-1" href="#Invocation">2. Invocation</a></li>
  <li><a name="toc-Printing-Commands-1" href="#Printing-Commands">3. Printing Commands</a></li>
  <li><a name="toc-Arithmetic-1" href="#Arithmetic">4. Arithmetic</a></li>
  <li><a name="toc-Stack-Control-1" href="#Stack-Control">5. Stack Control</a></li>
  <li><a name="toc-Registers-1" href="#Registers">6. Registers</a></li>
  <li><a name="toc-Parameters-1" href="#Parameters">7. Parameters</a></li>
  <li><a name="toc-Strings-1" href="#Strings">8. Strings</a></li>
  <li><a name="toc-Status-Inquiry-1" href="#Status-Inquiry">9. Status Inquiry</a></li>
  <li><a name="toc-Miscellaneous-1" href="#Miscellaneous">10. Miscellaneous</a></li>
  <li><a name="toc-Reporting-bugs-1" href="#Reporting-bugs">11. Reporting bugs</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>