home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Information / comp.lang.c / C-FAQ-list next >
Internet Message Format  |  1994-06-01  |  147KB

  1. Path: bloom-beacon.mit.edu!news.media.mit.edu!uhog.mit.edu!news.kei.com!babbage.ece.uc.edu!mary.iia.org!rtp.vnet.net!news.sprintlink.net!connected.com!beauty!rwing!eskimo!scs
  2. From: scs@eskimo.com (Steve Summit)
  3. Newsgroups: comp.lang.c,comp.answers,news.answers
  4. Subject: comp.lang.c Answers to Frequently Asked Questions (FAQ List)
  5. Message-ID: <1994May01.0301.scs.0002@eskimo.com>
  6. Date: 1 May 94 10:02:39 GMT
  7. Expires: Fri, 3 Jun 1994 00:00:00 GMT
  8. Sender: scs@eskimo.com (Steve Summit)
  9. Reply-To: scs@eskimo.com
  10. Followup-To: poster
  11. Organization: none, at the moment
  12. Lines: 3810
  13. Approved: news-answers-request@MIT.Edu
  14. Supersedes: <1994Apr01.0300.scs.0001@eskimo.com>
  15. X-Archive-Name: C-faq/faq
  16. X-Last-Modified: April 16, 1994
  17. Xref: bloom-beacon.mit.edu comp.lang.c:39867 comp.answers:5148 news.answers:18925
  18.  
  19. Archive-name: C-faq/faq
  20. Comp-lang-c-archive-name: C-FAQ-list
  21.  
  22. [Last modified April 16, 1994 by scs.]
  23.  
  24. Certain topics come up again and again on this newsgroup.  They are good
  25. questions, and the answers may not be immediately obvious, but each time
  26. they recur, much net bandwidth and reader time is wasted on repetitive
  27. responses, and on tedious corrections to the incorrect answers which are
  28. inevitably posted.
  29.  
  30. This article, which is posted monthly, attempts to answer these common
  31. questions definitively and succinctly, so that net discussion can move
  32. on to more constructive topics without continual regression to first
  33. principles.
  34.  
  35. No mere newsgroup article can substitute for thoughtful perusal of a
  36. full-length tutorial or language reference manual.  Anyone interested
  37. enough in C to be following this newsgroup should also be interested
  38. enough to read and study one or more such manuals, preferably several
  39. times.  Some C books and compiler manuals are unfortunately inadequate;
  40. a few even perpetuate some of the myths which this article attempts to
  41. refute.  Several noteworthy books on C are listed in this article's
  42. bibliography.  Many of the questions and answers are cross-referenced to
  43. these books, for further study by the interested and dedicated reader
  44. (but beware of ANSI vs. ISO C Standard section numbers; see question
  45. 5.1).
  46.  
  47. If you have a question about C which is not answered in this article,
  48. first try to answer it by checking a few of the referenced books, or by
  49. asking knowledgeable colleagues, before posing your question to the net
  50. at large.  There are many people on the net who are happy to answer
  51. questions, but the volume of repetitive answers posted to one question,
  52. as well as the growing number of questions as the net attracts more
  53. readers, can become oppressive.  If you have questions or comments
  54. prompted by this article, please reply by mail rather than following up
  55. -- this article is meant to decrease net traffic, not increase it.
  56.  
  57. Besides listing frequently-asked questions, this article also summarizes
  58. frequently-posted answers.  Even if you know all the answers, it's worth
  59. skimming through this list once in a while, so that when you see one of
  60. its questions unwittingly posted, you won't have to waste time
  61. answering.
  62.  
  63. This article is always being improved.  Your input is welcomed.  Send
  64. your comments to scs@eskimo.com .
  65.  
  66. The questions answered here are divided into several categories:
  67.  
  68.      1. Null Pointers
  69.      2. Arrays and Pointers
  70.      3. Memory Allocation
  71.      4. Expressions
  72.      5. ANSI C
  73.      6. C Preprocessor
  74.      7. Variable-Length Argument Lists
  75.      8. Boolean Expressions and Variables
  76.      9. Structs, Enums, and Unions
  77.     10. Declarations
  78.     11. Stdio
  79.     12. Library Subroutines
  80.     13. Lint
  81.     14. Style
  82.     15. Floating Point
  83.     16. System Dependencies
  84.     17. Miscellaneous (Fortran to C converters, YACC grammars, etc.)
  85.  
  86. Herewith, some frequently-asked questions and their answers:
  87.  
  88.  
  89. Section 1. Null Pointers
  90.  
  91. 1.1:    What is this infamous null pointer, anyway?
  92.  
  93. A:    The language definition states that for each pointer type, there
  94.     is a special value -- the "null pointer" -- which is
  95.     distinguishable from all other pointer values and which is not
  96.     the address of any object or function.  That is, the address-of
  97.     operator & will never yield a null pointer, nor will a
  98.     successful call to malloc.  (malloc returns a null pointer when
  99.     it fails, and this is a typical use of null pointers: as a
  100.     "special" pointer value with some other meaning, usually "not
  101.     allocated" or "not pointing anywhere yet.")
  102.  
  103.     A null pointer is conceptually different from an uninitialized
  104.     pointer.  A null pointer is known not to point to any object; an
  105.     uninitialized pointer might point anywhere.  See also questions
  106.     3.1, 3.13, and 17.1.
  107.  
  108.     As mentioned in the definition above, there is a null pointer
  109.     for each pointer type, and the internal values of null pointers
  110.     for different types may be different.  Although programmers need
  111.     not know the internal values, the compiler must always be
  112.     informed which type of null pointer is required, so it can make
  113.     the distinction if necessary (see below).
  114.  
  115.     References: K&R I Sec. 5.4 pp. 97-8; K&R II Sec. 5.4 p. 102; H&S
  116.     Sec. 5.3 p. 91; ANSI Sec. 3.2.2.3 p. 38.
  117.  
  118. 1.2:    How do I "get" a null pointer in my programs?
  119.  
  120. A:    According to the language definition, a constant 0 in a pointer
  121.     context is converted into a null pointer at compile time.  That
  122.     is, in an initialization, assignment, or comparison when one
  123.     side is a variable or expression of pointer type, the compiler
  124.     can tell that a constant 0 on the other side requests a null
  125.     pointer, and generate the correctly-typed null pointer value.
  126.     Therefore, the following fragments are perfectly legal:
  127.  
  128.         char *p = 0;
  129.         if(p != 0)
  130.  
  131.     However, an argument being passed to a function is not
  132.     necessarily recognizable as a pointer context, and the compiler
  133.     may not be able to tell that an unadorned 0 "means" a null
  134.     pointer.  For instance, the Unix system call "execl" takes a
  135.     variable-length, null-pointer-terminated list of character
  136.     pointer arguments.  To generate a null pointer in a function
  137.     call context, an explicit cast is typically required, to force
  138.     the 0 to be in a pointer context:
  139.  
  140.         execl("/bin/sh", "sh", "-c", "ls", (char *)0);
  141.  
  142.     If the (char *) cast were omitted, the compiler would not know
  143.     to pass a null pointer, and would pass an integer 0 instead.
  144.     (Note that many Unix manuals get this example wrong.)
  145.  
  146.     When function prototypes are in scope, argument passing becomes
  147.     an "assignment context," and most casts may safely be omitted,
  148.     since the prototype tells the compiler that a pointer is
  149.     required, and of which type, enabling it to correctly convert
  150.     unadorned 0's.  Function prototypes cannot provide the types for
  151.     variable arguments in variable-length argument lists, however,
  152.     so explicit casts are still required for those arguments.  It is
  153.     safest always to cast null pointer function arguments, to guard
  154.     against varargs functions or those without prototypes, to allow
  155.     interim use of non-ANSI compilers, and to demonstrate that you
  156.     know what you are doing.  (Incidentally, it's also a simpler
  157.     rule to remember.)
  158.  
  159.     Summary:
  160.  
  161.         Unadorned 0 okay:    Explicit cast required:
  162.  
  163.         initialization        function call,
  164.                     no prototype in scope
  165.         assignment
  166.                     variable argument in
  167.         comparison        varargs function call
  168.  
  169.         function call,
  170.         prototype in scope,
  171.         fixed argument
  172.  
  173.     References: K&R I Sec. A7.7 p. 190, Sec. A7.14 p. 192; K&R II
  174.     Sec. A7.10 p. 207, Sec. A7.17 p. 209; H&S Sec. 4.6.3 p. 72; ANSI
  175.     Sec. 3.2.2.3 .
  176.  
  177. 1.3:    What is NULL and how is it #defined?
  178.  
  179. A:    As a matter of style, many people prefer not to have unadorned
  180.     0's scattered throughout their programs.  For this reason, the
  181.     preprocessor macro NULL is #defined (by <stdio.h> or
  182.     <stddef.h>), with value 0 (or (void *)0, about which more
  183.     later).  A programmer who wishes to make explicit the
  184.     distinction between 0 the integer and 0 the null pointer can
  185.     then use NULL whenever a null pointer is required.  This is a
  186.     stylistic convention only; the preprocessor turns NULL back to 0
  187.     which is then recognized by the compiler (in pointer contexts)
  188.     as before.  In particular, a cast may still be necessary before
  189.     NULL (as before 0) in a function call argument.  (The table
  190.     under question 1.2 above applies for NULL as well as 0.)
  191.  
  192.     NULL should _only_ be used for pointers; see question 1.8.
  193.  
  194. . 5.4 p. 102; H&S
  195.     Sec. 13.1 p. 283; ANSI Sec. 4.1.5 p. 99, Sec. 3.2.2.3 p. 38,
  196.     Rationale Sec. 4.1.5 p. 74.
  197.  
  198. 1.4:    How should NULL be #defined on a machine which uses a nonzero
  199.     bit pattern as the internal representation of a null pointer?
  200.  
  201. A:    Programmers should never need to know the internal
  202.     representation(s) of null pointers, because they are normally
  203.     taken care of by the compiler.  If a machine uses a nonzero bit
  204.     pattern for null pointers, it is the compiler's responsibility
  205.     to generate it when the programmer requests, by writing "0" or
  206.     "NULL," a null pointer.  Therefore, #defining NULL as 0 on a
  207.     machine for which internal null pointers are nonzero is as valid
  208.     as on any other, because the compiler must (and can) still
  209.     generate the machine's correct null pointers in response to
  210.     unadorned 0's seen in pointer contexts.
  211.  
  212. 1.5:    If NULL were defined as follows:
  213.  
  214.         #define NULL ((char *)0)
  215.  
  216.     wouldn't that make function calls which pass an uncast NULL
  217.     work?
  218.  
  219. A:    Not in general.  The problem is that there are machines which
  220.     use different internal representations for pointers to different
  221.     types of data.  The suggested #definition would make uncast NULL
  222.     arguments to functions expecting pointers to characters to work
  223.     correctly, but pointer arguments to other types would still be
  224.     problematical, and legal constructions such as
  225.  
  226.         FILE *fp = NULL;
  227.  
  228.     could fail.
  229.  
  230.     Nevertheless, ANSI C allows the alternate
  231.  
  232.         #define NULL ((void *)0)
  233.  
  234.     definition for NULL.  Besides helping incorrect programs to work
  235.     (but only on machines with homogeneous pointers, thus
  236.     questionably valid assistance) this definition may catch
  237.     programs which use NULL incorrectly (e.g. when the ASCII  NUL
  238.     character was really intended; see question 1.8).
  239.  
  240.     References: ANSI Rationale Sec. 4.1.5 p. 74.
  241.  
  242. 1.6:    I use the preprocessor macro
  243.  
  244.         #define Nullptr(type) (type *)0
  245.  
  246.     to help me build null pointers of the correct type.
  247.  
  248. A:    This trick, though popular in some circles, does not buy much.
  249.     It is not needed in assignments and comparisons; see question
  250.     1.2.  It does not even save keystrokes.  Its use suggests to the
  251.     reader that the author is shaky on the subject of null pointers,
  252.     and requires the reader to check the #definition of the macro,
  253.     its invocations, and _all_ other pointer usages much more
  254.     carefully.  See also question 8.1.
  255.  
  256. 1.7:    Is the abbreviated pointer comparison "if(p)" to test for non-
  257.     null pointers valid?  What if the internal representation for
  258.     null pointers is nonzero?
  259.  
  260. A:    When C requires the boolean value of an expression (in the if,
  261.     while, for, and do statements, and with the &&, ||, !, and ?:
  262.     operators), a false value is produced when the expression
  263.     compares equal to zero, and a true value otherwise.  That is,
  264.     whenever one writes
  265.  
  266.         if(expr)
  267.  
  268.     where "expr" is any expression at all, the compiler essentially
  269.     acts as if it had been written as
  270.  
  271.         if(expr != 0)
  272.  
  273.     Substituting the trivial pointer expression "p" for "expr," we
  274.     have
  275.  
  276.         if(p)    is equivalent to        if(p != 0)
  277.  
  278.     and this is a comparison context, so the compiler can tell that
  279.     the (implicit) 0 is a null pointer, and use the correct value.
  280.     There is no trickery involved here; compilers do work this way,
  281.     and generate identical code for both statements.  The internal
  282.     representation of a pointer does _not_ matter.
  283.  
  284.     The boolean negation operator, !, can be described as follows:
  285.  
  286.         !expr    is essentially equivalent to    expr?0:1
  287.  
  288.     It is left as an exercise for the reader to show that
  289.  
  290.         if(!p)    is equivalent to        if(p == 0)
  291.  
  292.     "Abbreviations" such as if(p), though perfectly legal, are
  293.     considered by some to be bad style.
  294.  
  295.     See also question 8.2.
  296.  
  297.     References: K&R II Sec. A7.4.7 p. 204; H&S Sec. 5.3 p. 91; ANSI
  298.     Secs. 3.3.3.3, 3.3.9, 3.3.13, 3.3.14, 3.3.15, 3.6.4.1, and
  299.     3.6.5 .
  300.  
  301. 1.8:    If "NULL" and "0" are equivalent, which should I use?
  302.  
  303. A:    Many programmers believe that "NULL" should be used in all
  304.     pointer contexts, as a reminder that the value is to be thought
  305.     of as a pointer.  Others feel that the confusion surrounding
  306.     "NULL" and "0" is only compounded by hiding "0" behind a
  307.     #definition, and prefer to use unadorned "0" instead.  There is
  308.     no one right answer.  C programmers must understand that "NULL"
  309.     and "0" are interchangeable and that an uncast "0" is perfectly
  310.     acceptable in initialization, assignment, and comparison
  311.     contexts.  Any usage of "NULL" (as opposed to "0") should be
  312.     considered a gentle reminder that a pointer is involved;
  313.     programmers should not depend on it (either for their own
  314.     understanding or the compiler's) for distinguishing pointer 0's
  315.     from integer 0's.
  316.  
  317.     NULL should _not_ be used when another kind of 0 is required,
  318.     even though it might work, because doing so sends the wrong
  319.     stylistic message.  (ANSI allows the #definition of NULL to be
  320.     (void *)0, which will not work in non-pointer contexts.)  In
  321.     particular, do not use NULL when the ASCII null character (NUL)
  322.     is desired.  Provide your own definition
  323.  
  324.         #define NUL '\0'
  325.  
  326.     if you must.
  327.  
  328.     References: K&R II Sec. 5.4 p. 102.
  329.  
  330. 1.9:    But wouldn't it be better to use NULL (rather than 0) in case
  331.     the value of NULL changes, perhaps on a machine with nonzero
  332.     null pointers?
  333.  
  334. A:    No.  Although symbolic constants are often used in place of
  335.     numbers because the numbers might change, this is _not_ the
  336.     reason that NULL is used in place of 0.  Once again, the
  337.     language guarantees that source-code 0's (in pointer contexts)
  338.     generate null pointers.  NULL is used only as a stylistic
  339.     convention.
  340.  
  341. 1.10:    I'm confused.  NULL is guaranteed to be 0, but the null pointer
  342.     is not?
  343.  
  344. A:    When the term "null" or "NULL" is casually used, one of several
  345.     things may be meant:
  346.  
  347.     1.    The conceptual null pointer, the abstract language
  348.         concept defined in question 1.1.  It is implemented
  349.         with...
  350.  
  351.     2.    The internal (or run-time) representation of a null
  352.         pointer, which may or may not be all-bits-0 and which
  353.         may be different for different pointer types.  The
  354.         actual values should be of concern only to compiler
  355.         writers.  Authors of C programs never see them, since
  356.         they use...
  357.  
  358.     3.    The source code syntax for null pointers, which is the
  359.         single character "0".  It is often hidden behind...
  360.  
  361.     4.    The NULL macro, which is #defined to be "0" or
  362.         "(void *)0".  Finally, as red herrings, we have...
  363.  
  364.     5.    The ASCII null character (NUL), which does have all bits
  365.         zero, but has no necessary relation to the null pointer
  366.         except in name; and...
  367.  
  368.     6.    The "null string," which is another name for an empty
  369.         string ("").  The term "null string" can be confusing in
  370.         C (and should perhaps be avoided), because it involves a
  371.         null ('\0') character, but not a null pointer, which
  372.         brings us full circle...
  373.  
  374.     This article always uses the phrase "null pointer" (in lower
  375.     case) for sense 1, the character "0" for sense 3, and the
  376.     capitalized word "NULL" for sense 4.
  377.  
  378. 1.11:    Why is there so much confusion surrounding null pointers?  Why
  379.     do these questions come up so often?
  380.  
  381. A:    C programmers traditionally like to know more than they need to
  382.     about the underlying machine implementation.  The fact that null
  383.     pointers are represented both in source code, and internally to
  384.     most machines, as zero invites unwarranted assumptions.  The use
  385.     of a preprocessor macro (NULL) suggests that the value might
  386.     change later, or on some weird machine.  The construct
  387.     "if(p == 0)" is easily misread as calling for conversion of p to
  388.     an integral type, rather than 0 to a pointer type, before the
  389.     comparison.  Finally, the distinction between the several uses
  390.     of the term "null" (listed above) is often overlooked.
  391.  
  392.     One good way to wade out of the confusion is to imagine that C
  393.     had a keyword (perhaps "nil", like Pascal) with which null
  394.     pointers were requested.  The compiler could either turn "nil"
  395.     into the correct type of null pointer, when it could determine
  396.     the type from the source code, or complain when it could not.
  397.     Now, in fact, in C the keyword for a null pointer is not "nil"
  398.     but "0", which works almost as well, except that an uncast "0"
  399.     in a non-pointer context generates an integer zero instead of an
  400.     error message, and if that uncast 0 was supposed to be a null
  401.     pointer, the code may not work.
  402.  
  403. 1.12:    I'm still confused.  I just can't understand all this null
  404.     pointer stuff.
  405.  
  406. A:    Follow these two simple rules:
  407.  
  408.     1.    When you want to refer to a null pointer in source code,
  409.         use "0" or "NULL".
  410.  
  411.     2.    If the usage of "0" or "NULL" is an argument in a
  412.         function call, cast it to the pointer type expected by
  413.         the function being called.
  414.  
  415.     The rest of the discussion has to do with other people's
  416.     misunderstandings, or with the internal representation of null
  417.     pointers (which you shouldn't need to know), or with ANSI C
  418.     refinements.  Understand questions 1.1, 1.2, and 1.3, and
  419.     consider 1.8 and 1.11, and you'll do fine.
  420.  
  421. 1.13:    Given all the confusion surrounding null pointers, wouldn't it
  422.     be easier simply to require them to be represented internally by
  423.     zeroes?
  424.  
  425. A:    If for no other reason, doing so would be ill-advised because it
  426.     would unnecessarily constrain implementations which would
  427.     otherwise naturally represent null pointers by special, nonzero
  428.     bit patterns, particularly when those values would trigger
  429.     automatic hardware traps for invalid accesses.
  430.  
  431.     Besides, what would this requirement really accomplish?  Proper
  432.     understanding of null pointers does not require knowledge of the
  433.     internal representation, whether zero or nonzero.  Assuming that
  434.     null pointers are internally zero does not make any code easier
  435.     to write (except for a certain ill-advised usage of calloc; see
  436.     question 3.13).  Known-zero internal pointers would not obviate
  437.     casts in function calls, because the _size_ of the pointer might
  438.     still be different from that of an int.  (If "nil" were used to
  439.     request null pointers rather than "0," as mentioned in question
  440.     1.11, the urge to assume an internal zero representation would
  441.     not even arise.)
  442.  
  443. 1.14:    Seriously, have any actual machines really used nonzero null
  444.     pointers, or different representations for pointers to different
  445.     types?
  446.  
  447. A:    The Prime 50 series used segment 07777, offset 0 for the null
  448.     pointer, at least for PL/I.  Later models used segment 0, offset
  449.     0 for null pointers in C, necessitating new instructions such as
  450.     TCNP (Test C Null Pointer), evidently as a sop to all the extant
  451.     poorly-written C code which made incorrect assumptions.  Older,
  452.     word-addressed Prime machines were also notorious for requiring
  453.     larger byte pointers (char *'s) than word pointers (int *'s).
  454.  
  455.     The Eclipse MV series from Data General has three
  456.     architecturally supported pointer formats (word, byte, and bit
  457.     pointers), two of which are used by C compilers: byte pointers
  458.     for char * and void *, and word pointers for everything else.
  459.  
  460.     Some Honeywell-Bull mainframes use the bit pattern 06000 for
  461.     (internal) null pointers.
  462.  
  463.     The CDC Cyber 180 Series has 48-bit pointers consisting of a
  464.     ring, segment, and offset.  Most users (in ring 11) have null
  465.     pointers of 0xB00000000000.
  466.  
  467.     The Symbolics Lisp Machine, a tagged architecture, does not even
  468.     have conventional numeric pointers; it uses the pair <NIL, 0>
  469.     (basically a nonexistent <object, offset> handle) as a C null
  470.     pointer.
  471.  
  472.     Depending on the "memory model" in use, 80*86 processors (PC's)
  473.     may use 16 bit data pointers and 32 bit function pointers, or
  474.     vice versa.
  475.  
  476.     The old HP 3000 series computers use a different addressing
  477.     scheme for byte addresses than for word addresses; void and char
  478.     pointers therefore have a different representation than an int
  479.     (structure, etc.) pointer to the same address would have.
  480.  
  481. 1.15:    What does a run-time "null pointer assignment" error mean?  How
  482.     do I track it down?
  483.  
  484. A:    This message, which occurs only under MS-DOS (see, therefore,
  485.     section 16) means that you've written, via an unintialized
  486.     and/or null pointer, to location zero.
  487.  
  488.     A debugger will usually let you set a data breakpoint on
  489.     location 0.  Alternately, you could write a bit of code to copy
  490.     20 or so bytes from location 0 into another buffer, and
  491.     periodically check that it hasn't changed.
  492.  
  493.  
  494. Section 2. Arrays and Pointers
  495.  
  496. 2.1:    I had the definition char a[6] in one source file, and in
  497.     another I declared extern char *a.  Why didn't it work?
  498.  
  499. A:    The declaration extern char *a simply does not match the actual
  500.     definition.  The type "pointer-to-type-T" is not the same as
  501.     "array-of-type-T."  Use extern char a[].
  502.  
  503.     References: CT&P Sec. 3.3 pp. 33-4, Sec. 4.5 pp. 64-5.
  504.  
  505. 2.2:    But I heard that char a[] was identical to char *a.
  506.  
  507. A:    Not at all.  (What you heard has to do with formal parameters to
  508.     functions; see question 2.4.)  Arrays are not pointers.  The
  509.     array declaration "char a[6];" requests that space for six
  510.     characters be set aside, to be known by the name "a."  That is,
  511.     there is a location named "a" at which six characters can sit.
  512.     The pointer declaration "char *p;" on the other hand, requests a
  513.     place which holds a pointer.  The pointer is to be known by the
  514.     name "p," and can point to any char (or contiguous array of
  515.     chars) anywhere.
  516.  
  517.     As usual, a picture is worth a thousand words.  The statements
  518.  
  519.         char a[] = "hello";
  520.         char *p = "world";
  521.  
  522.     would result in data structures which could be represented like
  523.     this:
  524.  
  525.            +---+---+---+---+---+---+
  526.         a: | h | e | l | l | o |\0 |
  527.            +---+---+---+---+---+---+
  528.  
  529.            +-----+     +---+---+---+---+---+---+
  530.         p: |  *======> | w | o | r | l | d |\0 |
  531.            +-----+     +---+---+---+---+---+---+
  532.  
  533.     It is important to realize that a reference like x[3] generates
  534.     different code depending on whether x is an array or a pointer.
  535.     Given the declarations above, when the compiler sees the
  536.     expression a[3], it emits code to start at the location "a,"
  537.     move three past it, and fetch the character there.  When it sees
  538.     the expression p[3], it emits code to start at the location "p,"
  539.     fetch the pointer value there, add three to the pointer, and
  540.     finally fetch the character pointed to.  In the example above,
  541.     both a[3] and p[3] happen to be the character 'l', but the
  542.     compiler gets there differently.  (See also questions 17.19 and
  543.     17.20.)
  544.  
  545. 2.3:    So what is meant by the "equivalence of pointers and arrays" in
  546.     C?
  547.  
  548. A:    Much of the confusion surrounding pointers in C can be traced to
  549.     a misunderstanding of this statement.  Saying that arrays and
  550.     pointers are "equivalent" neither means that they are identical
  551.     nor even interchangeable.
  552.  
  553.     "Equivalence" refers to the following key definition:
  554.  
  555.         An lvalue [see question 2.5] of type array-of-T
  556.         which appears in an expression decays (with
  557.         three exceptions) into a pointer to its first
  558.         element; the type of the resultant pointer is
  559.         pointer-to-T.
  560.  
  561.     (The exceptions are when the array is the operand of a sizeof or
  562.     & operator, or is a literal string initializer for a character
  563.     array.)
  564.  
  565.     As a consequence of this definition, there is no apparent
  566.     difference in the behavior of the "array subscripting" operator
  567.     [] as it applies to arrays and pointers.  In an expression of
  568.     the form a[i], the array reference "a" decays into a pointer,
  569.     following the rule above, and is then subscripted just as would
  570.     be a pointer variable in the expression p[i] (although the
  571.     eventual memory accesses will be different, as explained in
  572.     question 2.2).  In either case, the expression x[i] (where x is
  573.     an array or a pointer) is, by definition, identical to
  574.     *((x)+(i)).
  575.  
  576.     References: K&R I Sec. 5.3 pp. 93-6; K&R II Sec. 5.3 p. 99; H&S
  577.     Sec. 5.4.1 p. 93; ANSI Sec. 3.2.2.1, Sec. 3.3.2.1, Sec. 3.3.6 .
  578.  
  579. 2.4:    Then why are array and pointer declarations interchangeable as
  580.     function formal parameters?
  581.  
  582. A:    Since arrays decay immediately into pointers, an array is never
  583.     actually passed to a function.  As a convenience, any parameter
  584.     declarations which "look like" arrays, e.g.
  585.  
  586.         f(a)
  587.         char a[];
  588.  
  589.     are treated by the compiler as if they were pointers, since that
  590.     is what the function will receive if an array is passed:
  591.  
  592.         f(a)
  593.         char *a;
  594.  
  595.     This conversion holds only within function formal parameter
  596.     declarations, nowhere else.  If this conversion bothers you,
  597.     avoid it; many people have concluded that the confusion it
  598.     causes outweighs the small advantage of having the declaration
  599.     "look like" the call and/or the uses within the function.
  600.  
  601.     References: K&R I Sec. 5.3 p. 95, Sec. A10.1 p. 205; K&R II
  602. , Sec. A8.6.3 p. 218, Sec. A10.1 p. 226; H&S
  603.     Sec. 5.4.3 p. 96; ANSI Sec. 3.5.4.3, Sec. 3.7.1, CT&P Sec. 3.3
  604.     pp. 33-4.
  605.  
  606. 2.5:    How can an array be an lvalue, if you can't assign to it?
  607.  
  608. A:    The ANSI C Standard defines a "modifiable lvalue," which an
  609.     array is not.
  610.  
  611.     References: ANSI Sec. 3.2.2.1 p. 37.
  612.  
  613. 2.6:    Why doesn't sizeof properly report the size of an array which is
  614.     a parameter to a function?
  615.  
  616. A:    The sizeof operator reports the size of the pointer parameter
  617.     which the function actually receives (see question 2.4).
  618.  
  619. 2.7:    Someone explained to me that arrays were really just constant
  620.     pointers.
  621.  
  622. A:    This is a bit of an oversimplification.  An array name is
  623.     "constant" in that it cannot be assigned to, but an array is
  624.     _not_ a pointer, as the discussion and pictures in question 2.2
  625.     should make clear.
  626.  
  627. 2.8:    Practically speaking, what is the difference between arrays and
  628.     pointers?
  629.  
  630. A:    Arrays automatically allocate space, but can't be relocated or
  631.     resized.  Pointers must be explicitly assigned to point to
  632.     allocated space (perhaps using malloc), but can be reassigned
  633.     (i.e. pointed at different objects) at will, and have many other
  634.     uses besides serving as the base of blocks of memory.
  635.  
  636.     Due to the so-called equivalence of arrays and pointers (see
  637.     question 2.3), arrays and pointers often seem interchangeable,
  638.     and in particular a pointer to a block of memory assigned by
  639.     malloc is frequently treated (and can be referenced using []
  640.     exactly) as if it were a true array.  (See question 2.14; see
  641.     also question 17.20.)
  642.  
  643. 2.9:    I came across some "joke" code containing the "expression"
  644.     5["abcdef"] .  How can this be legal C?
  645.  
  646. A:    Yes, Virginia, array subscripting is commutative in C.  This
  647.     curious fact follows from the pointer definition of array
  648.     subscripting, namely that a[e] is identical to *((a)+(e)), for
  649.     _any_ expression e and primary expression a, as long as one of
  650.     them is a pointer expression and one is integral.  This
  651.     unsuspected commutativity is often mentioned in C texts as if it
  652.     were something to be proud of, but it finds no useful
  653.     application outside of the Obfuscated C Contest (see question
  654.     17.13).
  655.  
  656.     References: ANSI Rationale Sec. 3.3.2.1 p. 41.
  657.  
  658. 2.10:    My compiler complained when I passed a two-dimensional array to
  659.     a routine expecting a pointer to a pointer.
  660.  
  661. A:    The rule by which arrays decay into pointers is not applied
  662.     recursively.  An array of arrays (i.e. a two-dimensional array
  663.     in C) decays into a pointer to an array, not a pointer to a
  664.     pointer.  Pointers to arrays can be confusing, and must be
  665.     treated carefully.  (The confusion is heightened by the
  666.     existence of incorrect compilers, including some versions of pcc
  667.     and pcc-derived lint's, which improperly accept assignments of
  668.     multi-dimensional arrays to multi-level pointers.)  If you are
  669.     passing a two-dimensional array to a function:
  670.  
  671.         int array[NROWS][NCOLUMNS];
  672.         f(array);
  673.  
  674.     the function's declaration should match:
  675.  
  676.         f(int a[][NCOLUMNS]) {...}
  677.     or
  678.         f(int (*ap)[NCOLUMNS]) {...}   /* ap is a pointer to an array */
  679.  
  680.     In the first declaration, the compiler performs the usual
  681.     implicit parameter rewriting of "array of array" to "pointer to
  682.     array;" in the second form the pointer declaration is explicit.
  683.     Since the called function does not allocate space for the array,
  684.     it does not need to know the overall size, so the number of
  685.     "rows," NROWS, can be omitted.  The "shape" of the array is
  686.     still important, so the "column" dimension NCOLUMNS (and, for 3-
  687.     or more dimensional arrays, the intervening ones) must be
  688.     included.
  689.  
  690.     If a function is already declared as accepting a pointer to a
  691.     pointer, it is probably incorrect to pass a two-dimensional
  692.     array directly to it.
  693.  
  694.     References: K&R I Sec. 5.10 p. 110; K&R II Sec. 5.9 p. 113.
  695.  
  696. 2.11:    How do I write functions which accept 2-dimensional arrays when
  697.     the "width" is not known at compile time?
  698.  
  699. A:    It's not easy.  One way is to pass in a pointer to the [0][0]
  700.     element, along with the two dimensions, and simulate array
  701.     subscripting "by hand:"
  702.  
  703.         f2(aryp, nrows, ncolumns)
  704.         int *aryp;
  705.         int nrows, ncolumns;
  706.         { ... ary[i][j] is really aryp[i * ncolumns + j] ... }
  707.  
  708.     This function could be called with the array from question 2.10
  709.     as
  710.  
  711.         f2(&array[0][0], NROWS, NCOLUMNS);
  712.  
  713.     It must be noted, however, that a program which performs
  714.     multidimensional array subscripting "by hand" in this way is not
  715.     in strict conformance with the ANSI C Standard; the behavior of
  716.     accessing (&array[0][0])[x] is not defined for x > NCOLUMNS.
  717.  
  718.     gcc allows local arrays to be declared having sizes which are
  719.     specified by a function's arguments, but this is a nonstandard
  720.     extension.
  721.  
  722.     See also question 2.15.
  723.  
  724. 2.12:    How do I declare a pointer to an array?
  725.  
  726. A:    Usually, you don't want to.  When people speak casually of a
  727.     pointer to an array, they usually mean a pointer to its first
  728.     element.
  729.  
  730.     Instead of a pointer to an array, consider using a pointer to
  731.     one of the array's elements.  Arrays of type T decay into
  732.     pointers to type T (see question 2.3), which is convenient;
  733.     subscripting or incrementing the resultant pointer accesses the
  734.     individual members of the array.  True pointers to arrays, when
  735.     subscripted or incremented, step over entire arrays, and are
  736.     generally only useful when operating on arrays of arrays, if at
  737.     all.  (See question 2.10 above.)
  738.  
  739.     If you really need to declare a pointer to an entire array, use
  740.     something like "int (*ap)[N];" where N is the size of the array.
  741.     (See also question 10.4.)  If the size of the array is unknown,
  742.     N can be omitted, but the resulting type, "pointer to array of
  743.     unknown size," is useless.
  744.  
  745. 2.13:    Since array references decay to pointers, given
  746.  
  747.         int array[NROWS][NCOLUMNS];
  748.  
  749.     what's the difference between array and &array?
  750.  
  751. A:    Under ANSI/ISO Standard C, &array yields a pointer, of type
  752.     pointer-to-array-of-T, to the entire array (see also question
  753.     2.12).  Under pre-ANSI C, the & in &array generally elicited a
  754.     warning, and was generally ignored.  Under all C compilers, an
  755.     unadorned reference to an array yields a pointer, of type
  756.     pointer-to-T, to the array's first element.  (See also question
  757.     2.3.)
  758.  
  759. 2.14:    How can I dynamically allocate a multidimensional array?
  760.  
  761. A:    It is usually best to allocate an array of pointers, and then
  762.     initialize each pointer to a dynamically-allocated "row."  Here
  763.     is a two-dimensional example:
  764.  
  765.         int **array1 = (int **)malloc(nrows * sizeof(int *));
  766.         for(i = 0; i < nrows; i++)
  767.             array1[i] = (int *)malloc(ncolumns * sizeof(int));
  768.  
  769.     (In "real" code, of course, malloc would be declared correctly,
  770.     and each return value checked.)
  771.  
  772.     You can keep the array's contents contiguous, while making later
  773.     reallocation of individual rows difficult, with a bit of
  774.     explicit pointer arithmetic:
  775.  
  776.         int **array2 = (int **)malloc(nrows * sizeof(int *));
  777.         array2[0] = (int *)malloc(nrows * ncolumns * sizeof(int));
  778.         for(i = 1; i < nrows; i++)
  779.             array2[i] = array2[0] + i * ncolumns;
  780.  
  781.     In either case, the elements of the dynamic array can be
  782.     accessed with normal-looking array subscripts: array[i][j].
  783.  
  784.     If the double indirection implied by the above schemes is for
  785.     some reason unacceptable, you can simulate a two-dimensional
  786.     array with a single, dynamically-allocated one-dimensional
  787.     array:
  788.  
  789.         int *array3 = (int *)malloc(nrows * ncolumns * sizeof(int));
  790.  
  791.     However, you must now perform subscript calculations manually,
  792.     accessing the i,jth element with array3[i * ncolumns + j].  (A
  793.     macro can hide the explicit calculation, but invoking it then
  794.     requires parentheses and commas which don't look exactly like
  795.     multidimensional array subscripts.)
  796.  
  797.     Finally, you can use pointers-to-arrays:
  798.  
  799.         int (*array4)[NCOLUMNS] =
  800.             (int (*)[NCOLUMNS])malloc(nrows * sizeof(*array4));
  801.  
  802.     , but the syntax gets horrific and all but one dimension must be
  803.     known at compile time.
  804.  
  805.     With all of these techniques, you may of course need to remember
  806.     to free the arrays (which may take several steps; see question
  807.     3.9) when they are no longer needed, and you cannot necessarily
  808.     intermix the dynamically-allocated arrays with conventional,
  809.     statically-allocated ones (see question 2.15 below, and also
  810.     question 2.10).
  811.  
  812. 2.15:    How can I use statically- and dynamically-allocated
  813.     multidimensional arrays interchangeably when passing them to
  814.     functions?
  815.  
  816. A:    There is no single perfect method.  Given the declarations
  817.  
  818.         int array[NROWS][NCOLUMNS];
  819.         int **array1;
  820.         int **array2;
  821.         int *array3;
  822.         int (*array4)[NCOLUMNS];
  823.  
  824.     as initialized in the code fragments in questions 2.10 and 2.14,
  825.     and functions declared as
  826.  
  827.         f1(int a[][NCOLUMNS], int m, int n);
  828.         f2(int *aryp, int nrows, int ncolumns);
  829.         f3(int **pp, int m, int n);
  830.  
  831.     (see questions 2.10 and 2.11), the following calls should work
  832.     as expected:
  833.  
  834.         f1(array, NROWS, NCOLUMNS);
  835.         f1(array4, nrows, NCOLUMNS);
  836.         f2(&array[0][0], NROWS, NCOLUMNS);
  837.         f2(*array2, nrows, ncolumns);
  838.         f2(array3, nrows, ncolumns);
  839.         f2(*array4, nrows, NCOLUMNS);
  840.         f3(array1, nrows, ncolumns);
  841.         f3(array2, nrows, ncolumns);
  842.  
  843.     The following two calls would probably work, but involve
  844.     questionable casts, and work only if the dynamic ncolumns
  845.     matches the static NCOLUMNS:
  846.  
  847.         f1((int (*)[NCOLUMNS])(*array2), nrows, ncolumns);
  848.         f1((int (*)[NCOLUMNS])array3, nrows, ncolumns);
  849.  
  850.     It must again be noted that passing &array[0][0] to f2() is not
  851.     strictly conforming; see question 2.11.
  852.  
  853.     If you can understand why all of the above calls work and are
  854.     written as they are, and if you understand why the combinations
  855.     that are not listed would not work, then you have a _very_ good
  856.     understanding of arrays and pointers (and several other areas)
  857.     in C.
  858.  
  859. 2.16:    Here's a neat trick: if I write
  860.  
  861.         int realarray[10];
  862.         int *array = &realarray[-1];
  863.  
  864.     I can treat "array" as if it were a 1-based array.
  865.  
  866. A:    Although this technique is attractive (and was used in old
  867.     editions of the book Numerical Recipes in C), it does not
  868.     conform to the C standards.  Pointer arithmetic is defined only
  869.     as long as the pointer points within the same allocated block of
  870.     memory, or to the imaginary "terminating" element one past it;
  871.     otherwise, the behavior is undefined, _even if the pointer is
  872.     not dereferenced_.  The code above could fail if, while
  873.     subtracting the offset, an illegal address were generated
  874.     (perhaps because the address tried to "wrap around" past the
  875.     beginning of some memory segment).
  876.  
  877.     References: ANSI Sec. 3.3.6 p. 48, Rationale Sec. 3.2.2.3 p. 38;
  878.     K&R II Sec. 5.3 p. 100, Sec. 5.4 pp. 102-3, Sec. A7.7 pp. 205-6.
  879.  
  880. 2.17:    I passed a pointer to a function which initialized it:
  881.  
  882.         ...
  883.         int *ip;
  884.         f(ip);
  885.         ...
  886.  
  887.         void f(ip)
  888.         int *ip;
  889.         {
  890.             static int dummy = 5;
  891.             ip = &dummy;
  892.         }
  893.  
  894.     , but the pointer in the caller was unchanged.
  895.  
  896. A:    Did the function try to initialize the pointer itself, or just
  897.     what it pointed to?  Remember that arguments in C are passed by
  898.     value.  The called function altered only the passed copy of the
  899.     pointer.  You'll either want to pass the address of the pointer
  900.     (the function will end up accepting a pointer-to-a-pointer), or
  901.     have the function return the pointer.
  902.  
  903. 2.18:    I have a char * pointer that happens to point to some ints, and
  904.     I want to step it over them.  Why doesn't
  905.  
  906.         ((int *)p)++;
  907.  
  908.     work?
  909.  
  910. A:    In C, a cast operator does not mean "pretend these bits have a
  911.     different type, and treat them accordingly;" it is a conversion
  912.     operator, and by definition it yields an rvalue, which cannot be
  913.     assigned to, or incremented with ++.  (It is an anomaly in pcc-
  914.     derived compilers, and an extension in gcc, that expressions
  915.     such as the above are ever accepted.)  Say what you mean: use
  916.  
  917.         p = (char *)((int *)p + 1);
  918.  
  919.     , or simply
  920.  
  921.         p += sizeof(int);
  922.  
  923.     References: ANSI Sec. 3.3.4, Rationale Sec. 3.3.2.4 p. 43.
  924.  
  925. 2.19:    Can I use a void ** pointer to pass a generic pointer to a
  926.     function by reference?
  927.  
  928. A:    Not portably.  There is no generic pointer-to-pointer type in C.
  929.     void * acts as a generic pointer only because conversions are
  930.     applied automatically when other pointer types are assigned to
  931.     and from void *'s; these conversions cannot be performed (the
  932.     correct underlying pointer type is not known) if an attempt is
  933.     made to indirect upon a void ** value which points at something
  934.     other than a void *.
  935.  
  936.  
  937. Section 3. Memory Allocation
  938.  
  939. 3.1:    Why doesn't this fragment work?
  940.  
  941.         char *answer;
  942.         printf("Type something:\n");
  943.         gets(answer);
  944.         printf("You typed \"%s\"\n", answer);
  945.  
  946. A:    The pointer variable "answer," which is handed to the gets
  947.     function as the location into which the response should be
  948.     stored, has not been set to point to any valid storage.  That
  949.     is, we cannot say where the pointer "answer" points.  (Since
  950.     local variables are not initialized, and typically contain
  951.     garbage, it is not even guaranteed that "answer" starts out as a
  952.     null pointer.  See question 17.1.)
  953.  
  954.     The simplest way to correct the question-asking program is to
  955.     use a local array, instead of a pointer, and let the compiler
  956.     worry about allocation:
  957.  
  958.         #include <string.h>
  959.  
  960.         char answer[100], *p;
  961.         printf("Type something:\n");
  962.         fgets(answer, sizeof(answer), stdin);
  963.         if((p = strchr(answer, '\n')) != NULL)
  964.             *p = '\0';
  965.         printf("You typed \"%s\"\n", answer);
  966.  
  967.     Note that this example also uses fgets() instead of gets()
  968.     (always a good idea; see question 11.6), allowing the size of
  969.     the array to be specified, so that the end of the array will not
  970.     be overwritten if the user types an overly-long line.
  971.     (Unfortunately for this example, fgets() does not automatically
  972.     delete the trailing \n, as gets() would.)  It would also be
  973.     possible to use malloc() to allocate the answer buffer.
  974.  
  975. 3.2:    I can't get strcat to work.  I tried
  976.  
  977.         char *s1 = "Hello, ";
  978.         char *s2 = "world!";
  979.         char *s3 = strcat(s1, s2);
  980.  
  981.     but I got strange results.
  982.  
  983. A:    Again, the problem is that space for the concatenated result is
  984.     not properly allocated.  C does not provide an automatically-
  985.     managed string type.  C compilers only allocate memory for
  986.     objects explicitly mentioned in the source code (in the case of
  987.     "strings," this includes character arrays and string literals).
  988.     The programmer must arrange (explicitly) for sufficient space
  989.     for the results of run-time operations such as string
  990.     concatenation, typically by declaring arrays, or by calling
  991.     malloc.  (See also question 17.20.)
  992.  
  993.     strcat performs no allocation; the second string is appended to
  994.     the first one, in place.  Therefore, one fix would be to declare
  995.     the first string as an array with sufficient space:
  996.  
  997.         char s1[20] = "Hello, ";
  998.  
  999.     Since strcat returns the value of its first argument (s1, in
  1000.     this case), the s3 variable is superfluous.
  1001.  
  1002.     References: CT&P Sec. 3.2 p. 32.
  1003.  
  1004. 3.3:    But the man page for strcat says that it takes two char *'s as
  1005.     arguments.  How am I supposed to know to allocate things?
  1006.  
  1007. A:    In general, when using pointers you _always_ have to consider
  1008.     memory allocation, at least to make sure that the compiler is
  1009.     doing it for you.  If a library routine's documentation does not
  1010.     explicitly mention allocation, it is usually the caller's
  1011.     problem.
  1012.  
  1013.     The Synopsis section at the top of a Unix-style man page can be
  1014.     misleading.  The code fragments presented there are closer to
  1015.     the function definition used by the call's implementor than the
  1016.     invocation used by the caller.  In particular, many routines
  1017.     which accept pointers (e.g. to structs or strings), are usually
  1018.     called with the address of some object (a struct, or an array --
  1019.     see questions 2.3 and 2.4.)  Another common example is stat().
  1020.  
  1021. 3.4:    I have a function that is supposed to return a string, but when
  1022.     it returns to its caller, the returned string is garbage.
  1023.  
  1024. A:    Make sure that the memory to which the function returns a
  1025.     pointer is correctly allocated.  The returned pointer should be
  1026.     to a statically-allocated buffer, or to a buffer passed in by
  1027.     the caller, or to memory obtained with malloc(), but _not_ to a
  1028.     local (auto) array.  In other words, never do something like
  1029.  
  1030.         char *f()
  1031.         {
  1032.             char buf[10];
  1033.             /* ... */
  1034.             return buf;
  1035.         }
  1036.  
  1037.     One fix (which is imperfect, especially if f() is called
  1038.     recursively, or if several of its return values are needed
  1039.     simultaneously) would to to declare the buffer as
  1040.  
  1041.             static char buf[10];
  1042.  
  1043.     See also question 17.5.
  1044.  
  1045. 3.5:    Why does some code carefully cast the values returned by malloc
  1046.     to the pointer type being allocated?
  1047.  
  1048. SO Standard C introduced the void * generic pointer
  1049.     type, these casts were typically required to silence warnings
  1050.     about assignment between incompatible pointer types.  (Under
  1051.     ANSI/ISO Standard C, these casts are not required.)
  1052.  
  1053. 3.6:    You can't use dynamically-allocated memory after you free it,
  1054.     can you?
  1055.  
  1056. A:    No.  Some early documentation for malloc stated that the
  1057.     contents of freed memory was "left undisturbed;" this ill-
  1058.     advised guarantee was never universal and is not required by
  1059.     ANSI.
  1060.  
  1061.     Few programmers would use the contents of freed memory
  1062.     deliberately, but it is easy to do so accidentally.  Consider
  1063.     the following (correct) code for freeing a singly-linked list:
  1064.  
  1065.         struct list *listp, *nextp;
  1066.         for(listp = base; listp != NULL; listp = nextp) {
  1067.             nextp = listp->next;
  1068.             free((char *)listp);
  1069.         }
  1070.  
  1071.     and notice what would happen if the more-obvious loop iteration
  1072.     expression listp = listp->next were used, without the temporary
  1073.     nextp pointer.
  1074.  
  1075.     References: ANSI Rationale Sec. 4.10.3.2 p. 102; CT&P Sec. 7.10
  1076.     p. 95.
  1077.  
  1078. 3.7:    How does free() know how many bytes to free?
  1079.  
  1080. A:    The malloc/free package remembers the size of each block it
  1081.     allocates and returns, so it is not necessary to remind it of
  1082.     the size when freeing.
  1083.  
  1084. 3.8:    So can I query the malloc package to find out how big an
  1085.     allocated block is?
  1086.  
  1087. A:    Not portably.
  1088.  
  1089. 3.9:    I'm allocating structures which contain pointers to other
  1090.     dynamically-allocated objects.  When I free a structure, do I
  1091.     have to free each subsidiary pointer first?
  1092.  
  1093. A:    Yes.  In general, you must arrange that each pointer returned
  1094.     from malloc be individually passed to free, exactly once (if it
  1095.     is freed at all).
  1096.  
  1097. 3.10:    I have a program which mallocs but then frees a lot of memory,
  1098.     but memory usage (as reported by ps) doesn't seem to go back
  1099.     down.
  1100.  
  1101. A:    Most implementations of malloc/free do not return freed memory
  1102.     to the operating system (if there is one), but merely make it
  1103.     available for future malloc calls within the same process.
  1104.  
  1105. 3.11:    Must I free allocated memory before the program exits?
  1106.  
  1107. A:    You shouldn't have to.  A real operating system definitively
  1108.     reclaims all memory when a program exits.  Nevertheless, some
  1109.     personal computers are said not to reliably recover memory, and
  1110.     all that can be inferred from the ANSI/ISO C Standard is that it
  1111.     is a "quality of implementation issue."
  1112.  
  1113.     References: ANSI Sec. 4.10.3.2 .
  1114.  
  1115. 3.12:    Is it legal to pass a null pointer as the first argument to
  1116.     realloc()?  Why would you want to?
  1117.  
  1118. A:    ANSI C sanctions this usage (and the related realloc(..., 0),
  1119.     which frees), but several earlier implementations do not support
  1120.     it, so it is not widely portable.  Passing an initially-null
  1121.     pointer to realloc can make it easier to write a self-starting
  1122.     incremental allocation algorithm.
  1123.  
  1124.     References: ANSI Sec. 4.10.3.4 .
  1125.  
  1126. 3.13:    What is the difference between calloc and malloc?  Is it safe to
  1127.     use calloc's zero-fill guarantee for pointer and floating-point
  1128.     values?  Does free work on memory allocated with calloc, or do
  1129.     you need a cfree?
  1130.  
  1131. A:    calloc(m, n) is essentially equivalent to
  1132.  
  1133.         p = malloc(m * n);
  1134.         memset(p, 0, m * n);
  1135.  
  1136.     The zero fill is all-bits-zero, and does not therefore guarantee
  1137.     useful zero values for pointers (see section 1 of this list) or
  1138.     floating-point values.  free can (and should) be used to free
  1139.     the memory allocated by calloc.
  1140.  
  1141.     References: ANSI Secs. 4.10.3 to 4.10.3.2 .
  1142.  
  1143. 3.14:    What is alloca and why is its use discouraged?
  1144.  
  1145. A:    alloca allocates memory which is automatically freed when the
  1146.     function which called alloca returns.  That is, memory allocated
  1147.     with alloca is local to a particular function's "stack frame" or
  1148.     context.
  1149.  
  1150.     alloca cannot be written portably, and is difficult to implement
  1151.     on machines without a stack.  Its use is problematical (and the
  1152.     obvious implementation on a stack-based machine fails) when its
  1153.     return value is passed directly to another function, as in
  1154.     fgets(alloca(100), 100, stdin).
  1155.  
  1156.     For these reasons, alloca cannot be used in programs which must
  1157.     be widely portable, no matter how useful it might be.
  1158.  
  1159.     References: ANSI Rationale Sec. 4.10.3 p. 102.
  1160.  
  1161.  
  1162. Section 4. Expressions
  1163.  
  1164. 4.1:    Why doesn't this code:
  1165.  
  1166.         a[i] = i++;
  1167.  
  1168.     work?
  1169.  
  1170. A:    The subexpression i++ causes a side effect -- it modifies i's
  1171.     value -- which leads to undefined behavior if i is also
  1172.     referenced elsewhere in the same expression.  (Note that
  1173.     although the language in K&R suggests that the behavior of this
  1174.     expression is unspecified, the ANSI/ISO C Standard makes the
  1175.     stronger statement that it is undefined -- see question 5.23.)
  1176.  
  1177.     References: ANSI Sec. 3.3 p. 39.
  1178.  
  1179. 4.2:    Under my compiler, the code
  1180.  
  1181.         int i = 7;
  1182.         printf("%d\n", i++ * i++);
  1183.  
  1184.     prints 49.  Regardless of the order of evaluation, shouldn't it
  1185.     print 56?
  1186.  
  1187. A:    Although the postincrement and postdecrement operators ++ and --
  1188.     perform the operations after yielding the former value, the
  1189.     implication of "after" is often misunderstood.  It is _not_
  1190.     guaranteed that the operation is performed immediately after
  1191.     giving up the previous value and before any other part of the
  1192.     expression is evaluated.  It is merely guaranteed that the
  1193.     update will be performed sometime before the expression is
  1194.     considered "finished" (before the next "sequence point," in ANSI
  1195.     C's terminology).  In the example, the compiler chose to
  1196.     multiply the previous value by itself and to perform both
  1197.     increments afterwards.
  1198.  
  1199.     The behavior of code which contains multiple, ambiguous side
  1200.     effects has always been undefined (see question 5.23).  Don't
  1201.     even try to find out how your compiler implements such things
  1202.     (contrary to the ill-advised exercises in many C textbooks); as
  1203.     K&R wisely point out, "if you don't know _how_ they are done on
  1204.     various machines, that innocence may help to protect you."
  1205.  
  1206.     References: K&R I Sec. 2.12 p. 50; K&R II Sec. 2.12 p. 54; ANSI
  1207.     Sec. 3.3 p. 39; CT&P Sec. 3.7 p. 47; PCS Sec. 9.5 pp. 120-1.
  1208.     (Ignore H&S Sec. 7.12 pp. 190-1, which is obsolete.)
  1209.  
  1210. 4.3:    I've experimented with the code
  1211.  
  1212.         int i = 2;
  1213.         i = i++;
  1214.  
  1215.     on several compilers.  Some gave i the value 2, some gave 3, but
  1216.     one gave 4.  I know the behavior is undefined, but how could it
  1217.     give 4?
  1218.  
  1219. A:    Undefined behavior means _anything_ can happen.  See question
  1220.     5.23.
  1221.  
  1222. 4.4:    People keep saying the behavior is undefined, but I just tried
  1223.     it on an ANSI-conforming compiler, and got the results I
  1224.     expected.
  1225.  
  1226. A:    A compiler may do anything it likes when faced with undefined
  1227.     behavior (and, within limits, with implementation-defined and
  1228.     unspecified behavior), including doing what you expect.  It's
  1229.     unwise to depend on it, though.  See also question 5.18.
  1230.  
  1231. 4.5:    Can I use explicit parentheses to force the order of evaluation
  1232.     I want?  Even if I don't, doesn't precedence dictate it?
  1233.  
  1234. A:    Operator precedence and explicit parentheses impose only a
  1235.     partial ordering on the evaluation of an expression.  Consider
  1236.     the expression
  1237.  
  1238.         f() + g() * h()
  1239.  
  1240.     -- although we know that the multiplication will happen before
  1241.     the addition, there is no telling which of the three functions
  1242.     will be called first.
  1243.  
  1244. 4.6:    But what about the &&, ||, and comma operators?
  1245.     I see code like "if((c = getchar()) == EOF || c == '\n')" ...
  1246.  
  1247. A:    There is a special exception for those operators, (as well as
  1248.     the ?: operator); each of them does imply a sequence point (i.e.
  1249.     left-to-right evaluation is guaranteed).  Any book on C should
  1250.     make this clear.
  1251.  
  1252.     References: K&R I Sec. 2.6 p. 38, Secs. A7.11-12 pp. 190-1;
  1253.     K&R II Sec. 2.6 p. 41, Secs. A7.14-15 pp. 207-8; ANSI
  1254.     Secs. 3.3.13 p. 52, 3.3.14 p. 52, 3.3.15 p. 53, 3.3.17 p. 55,
  1255.     CT&P Sec. 3.7 pp. 46-7.
  1256.  
  1257. 4.7:    If I'm not using the value of the expression, should I use i++
  1258.     or ++i to increment a variable?
  1259.  
  1260. A:    Since the two forms differ only in the value yielded, they are
  1261.     entirely equivalent when only their side effect is needed.
  1262.  
  1263. 4.8:    Why doesn't the code
  1264.  
  1265.         int a = 1000, b = 1000;
  1266.         long int c = a * b;
  1267.  
  1268.     work?
  1269.  
  1270. A:    Under C's integral promotion rules, the multiplication is
  1271.     carried out using int arithmetic, and the result may overflow
  1272.     and/or be truncated before being assigned to the long int left-
  1273.     hand-side.  Use an explicit cast to force long arithmetic:
  1274.  
  1275. long int)a * b;
  1276.  
  1277.     Note that the code (long int)(a * b) would _not_ have the
  1278.     desired effect.
  1279.  
  1280.  
  1281. Section 5. ANSI C
  1282.  
  1283. 5.1:    What is the "ANSI C Standard?"
  1284.  
  1285. A:    In 1983, the American National Standards Institute (ANSI)
  1286.     commissioned a committee, X3J11, to standardize the C language.
  1287.     After a long, arduous process, including several widespread
  1288.     public reviews, the committee's work was finally ratified as ANS
  1289.     X3.159-1989, on December 14, 1989, and published in the spring
  1290.     of 1990.  For the most part, ANSI C standardizes existing
  1291.     practice, with a few additions from C++ (most notably function
  1292.     prototypes) and support for multinational character sets
  1293.     (including the much-lambasted trigraph sequences).  The ANSI C
  1294.     standard also formalizes the C run-time library support
  1295.     routines.
  1296.  
  1297.     The published Standard includes a "Rationale," which explains
  1298.     many of its decisions, and discusses a number of subtle points,
  1299.     including several of those covered here.  (The Rationale is "not
  1300.     part of ANSI Standard X3.159-1989, but is included for
  1301.     information only.")
  1302.  
  1303.     The Standard has been adopted as an international standard,
  1304.     ISO/IEC 9899:1990, although the sections are numbered
  1305.     differently (briefly, ANSI sections 2 through 4 correspond
  1306.     roughly to ISO sections 5 through 7), and the Rationale is
  1307.     currently not included.
  1308.  
  1309. 5.2:    How can I get a copy of the Standard?
  1310.  
  1311. A:    ANSI X3.159 has been officially superseded by ISO 9899.  Copies
  1312.     are available in the United States from
  1313.  
  1314.         American National Standards Institute
  1315.         11 W. 42nd St., 13th floor
  1316.         New York, NY  10036  USA
  1317.         (+1) 212 642 4900
  1318.  
  1319.     or
  1320.  
  1321.         Global Engineering Documents
  1322.         2805 McGaw Avenue
  1323.         Irvine, CA  92714  USA
  1324.         (+1) 714 261 1455
  1325.         (800) 854 7179  (U.S. & Canada)
  1326.  
  1327.     In other countries, contact the appropriate national standards
  1328.     body, or ISO in Geneva at:
  1329.  
  1330.         ISO Sales
  1331.         Case Postale 56
  1332.         CH-1211 Geneve 20
  1333.         Switzerland
  1334.  
  1335.     The cost is $130.00 from ANSI or $162.50 from Global.  Copies of
  1336.     the original X3.159 (including the Rationale) are still
  1337.     available at $205.00 from ANSI or $200.50 from Global.  Note
  1338.     that ANSI derives revenues to support its operations from the
  1339.     sale of printed standards, so electronic copies are _not_
  1340.     available.
  1341.  
  1342.     The mistitled _Annotated ANSI C Standard_, with annotations by
  1343.     Herbert Schildt, contains the full text of ISO 9899; it is
  1344.     published by Osborne/McGraw-Hill, ISBN 0-07-881952-0, and sells
  1345.     in the U.S. for approximately $40.  (It has been suggested that
  1346.     the price differential between this work and the official
  1347.     standard reflects the value of the annotations.)
  1348.  
  1349.     The text of the Rationale (not the full Standard) is now
  1350.     available for anonymous ftp from ftp.uu.net (see question 17.12)
  1351.     in directory doc/standards/ansi/X3.159-1989 .  The Rationale has
  1352.     also been printed by Silicon Press, ISBN 0-929306-07-4.
  1353.  
  1354. 5.3:    Does anyone have a tool for converting old-style C programs to
  1355.     ANSI C, or vice versa, or for automatically generating
  1356.     prototypes?
  1357.  
  1358. A:    Two programs, protoize and unprotoize, convert back and forth
  1359.     between prototyped and "old style" function definitions and
  1360.     declarations.  (These programs do _not_ handle full-blown
  1361.     translation between "Classic" C and ANSI C.)  These programs
  1362.     were once patches to the FSF GNU C compiler, gcc, but are now
  1363.     part of the main gcc distribution; look in pub/gnu at
  1364.     prep.ai.mit.edu (18.71.0.38), or at several other FSF archive
  1365.     sites.
  1366.  
  1367.     The unproto program (/pub/unix/unproto5.shar.Z on
  1368.     ftp.win.tue.nl) is a filter which sits between the preprocessor
  1369.     and the next compiler pass, converting most of ANSI C to
  1370.     traditional C on-the-fly.
  1371.  
  1372.     The GNU GhostScript package comes with a little program called
  1373.     ansi2knr.
  1374.  
  1375.     Several prototype generators exist, many as modifications to
  1376.     lint.  Version 3 of CPROTO was posted to comp.sources.misc in
  1377.     March, 1992.  There is another program called "cextract."  See
  1378.     also question 17.12.
  1379.  
  1380.     Finally, are you sure you really need to convert lots of old
  1381.     code to ANSI C?  The old-style function syntax is still
  1382.     acceptable.
  1383.  
  1384. 5.4:    I'm trying to use the ANSI "stringizing" preprocessing operator
  1385.     # to insert the value of a symbolic constant into a message, but
  1386.     it keeps stringizing the macro's name rather than its value.
  1387.  
  1388. A:    You must use something like the following two-step procedure to
  1389.     force the macro to be expanded as well as stringized:
  1390.  
  1391.         #define str(x) #x
  1392.         #define xstr(x) str(x)
  1393.         #define OP plus
  1394.         char *opname = xstr(OP);
  1395.  
  1396.     This sets opname to "plus" rather than "OP".
  1397.  
  1398.     An equivalent circumlocution is necessary with the token-pasting
  1399.     operator ## when the values (rather than the names) of two
  1400.     macros are to be concatenated.
  1401.  
  1402.     References: ANSI Sec. 3.8.3.2, Sec. 3.8.3.5 example p. 93.
  1403.  
  1404. 5.5:    I don't understand why I can't use const values in initializers
  1405.     and array dimensions, as in
  1406.  
  1407.         const int n = 5;
  1408.         int a[n];
  1409.  
  1410. A:    The const qualifier really means "read-only;" an object so
  1411.     qualified is a normal run-time object which cannot (normally) be
  1412.     assigned to.  The value of a const-qualified object is therefore
  1413.     _not_ a constant expression in the full sense of the term.  (C
  1414.     is unlike C++ in this regard.)  When you need a true compile-
  1415.     time constant, use a preprocessor #define.
  1416.  
  1417.     References: ANSI Sec. 3.4 .
  1418.  
  1419. 5.6:    What's the difference between "char const *p" and
  1420.     "char * const p"?
  1421.  
  1422. A:    "char const *p" is a pointer to a constant character (you can't
  1423.     change the character); "char * const p" is a constant pointer to
  1424.     a (variable) character (i.e. you can't change the pointer).
  1425.     (Read these "inside out" to understand them.  See question
  1426.     10.4.)
  1427.  
  1428.     References: ANSI Sec. 3.5.4.1 .
  1429.  
  1430. 5.7:    Why can't I pass a char ** to a function which expects a
  1431.     const char **?
  1432.  
  1433. A:    You can use a pointer-to-T (for any type T) where a pointer-to-
  1434.     const-T is expected, but the rule (an explicit exception) which
  1435.     permits slight mismatches in qualified pointer types is not
  1436.     applied recursively, but only at the top level.
  1437.  
  1438.     You must use explicit casts (e.g. (const char **) in this case)
  1439.     when assigning (or passing) pointers which have qualifier
  1440.     mismatches at other than the first level of indirection.
  1441.  
  1442.     References: ANSI Sec. 3.1.2.6 p. 26, Sec. 3.3.16.1 p. 54,
  1443.     Sec. 3.5.3 p. 65.
  1444.  
  1445. 5.8:    My ANSI compiler complains about a mismatch when it sees
  1446.  
  1447.         extern int func(float);
  1448.  
  1449.         int func(x)
  1450.         float x;
  1451.         {...
  1452.  
  1453. A:    You have mixed the new-style prototype declaration
  1454.     "extern int func(float);" with the old-style definition
  1455.     "int func(x) float x;".  It is usually safe to mix the two
  1456.     styles (see question 5.9), but not in this case.  Old C (and
  1457.     ANSI C, in the absence of prototypes, and in variable-length
  1458.     argument lists) "widens" certain arguments when they are passed
  1459.     to functions.  floats are promoted to double, and characters and
  1460.     short integers are promoted to ints.  (For old-style function
  1461.     definitions, the values are automatically converted back to the
  1462.     corresponding narrower types within the body of the called
  1463.     function, if they are declared that way there.)
  1464.  
  1465.     This problem can be fixed either by using new-style syntax
  1466.     consistently in the definition:
  1467.  
  1468.         int func(float x) { ... }
  1469.  
  1470.     or by changing the new-style prototype declaration to match the
  1471.     old-style definition:
  1472.  
  1473.         extern int func(double);
  1474.  
  1475.     (In this case, it would be clearest to change the old-style
  1476.     definition to use double as well, as long as the address of that
  1477.     parameter is not taken.)
  1478.  
  1479.     It may also be safer to avoid "narrow" (char, short int, and
  1480.     float) function arguments and return types.
  1481.  
  1482.     References: ANSI Sec. 3.3.2.2 .
  1483.  
  1484. 5.9:    Can you mix old-style and new-style function syntax?
  1485.  
  1486. A:    Doing so is perfectly legal, as long as you're careful (see
  1487.     especially question 5.8).  Note however that old-style syntax is
  1488.     marked as obsolescent, and support for it may be removed some
  1489.     day.
  1490.  
  1491.     References: ANSI Secs. 3.7.1, 3.9.5 .
  1492.  
  1493. 5.10:    Why does the declaration
  1494.  
  1495.         extern f(struct x {int s;} *p);
  1496.  
  1497.     give me an obscure warning message about "struct x introduced in
  1498.     prototype scope"?
  1499.  
  1500. A:    In a quirk of C's normal block scoping rules, a struct declared
  1501.     only within a prototype cannot be compatible with other structs
  1502.     declared in the same source file, nor can the struct tag be used
  1503. the end of the
  1504.     prototype).
  1505.  
  1506.     To resolve the problem, precede the prototype with the vacuous-
  1507.     looking declaration
  1508.  
  1509.         struct x;
  1510.  
  1511.     , which will reserve a place at file scope for struct x's
  1512.     definition, which will be completed by the struct declaration
  1513.     within the prototype.
  1514.  
  1515.     References: ANSI Sec. 3.1.2.1 p. 21, Sec. 3.1.2.6 p. 26,
  1516.     Sec. 3.5.2.3 p. 63.
  1517.  
  1518. 5.11:    I'm getting strange syntax errors inside code which I've
  1519.     #ifdeffed out.
  1520.  
  1521. A:    Under ANSI C, the text inside a "turned off" #if, #ifdef, or
  1522.     #ifndef must still consist of "valid preprocessing tokens."
  1523.     This means that there must be no unterminated comments or quotes
  1524.     (note particularly that an apostrophe within a contracted word
  1525.     could look like the beginning of a character constant), and no
  1526.     newlines inside quotes.  Therefore, natural-language comments
  1527.     and pseudocode should always be written between the "official"
  1528.     comment delimiters /* and */.  (But see also question 17.14, and
  1529.     6.7.)
  1530.  
  1531.     References: ANSI Sec. 2.1.1.2 p. 6, Sec. 3.1 p. 19 line 37.
  1532.  
  1533. 5.12:    Can I declare main as void, to shut off these annoying "main
  1534.     returns no value" messages?  (I'm calling exit(), so main
  1535.     doesn't return.)
  1536.  
  1537. A:    No.  main must be declared as returning an int, and as taking
  1538.     either zero or two arguments (of the appropriate type).  If
  1539.     you're calling exit() but still getting warnings, you'll have to
  1540.     insert a redundant return statement (or use some kind of
  1541.     "notreached" directive, if available).
  1542.  
  1543.     Declaring a function as void does not merely silence warnings;
  1544.     it may also result in a different function call/return sequence,
  1545.     incompatible with what the caller (in main's case, the C run-
  1546.     time startup code) expects.
  1547.  
  1548.     References: ANSI Sec. 2.1.2.2.1 pp. 7-8.
  1549.  
  1550. 5.13:    Is exit(status) truly equivalent to returning status from main?
  1551.  
  1552. A:    Formally, yes, although discrepancies arise under a few older,
  1553.     nonconforming systems, or if data local to main() might be needed
  1554.     during cleanup (due perhaps to a setbuf or atexit call), or if
  1555.     main() is called recursively.
  1556.  
  1557.     References: ANSI Sec. 2.1.2.2.3 p. 8.
  1558.  
  1559. 5.14:    Why does the ANSI Standard not guarantee more than six monocase
  1560.     characters of external identifier significance?
  1561.  
  1562. A:    The problem is older linkers which are neither under the control
  1563.     of the ANSI standard nor the C compiler developers on the
  1564.     systems which have them.  The limitation is only that
  1565.     identifiers be _significant_ in the first six characters, not
  1566.     that they be restricted to six characters in length.  This
  1567.     limitation is annoying, but certainly not unbearable, and is
  1568.     marked in the Standard as "obsolescent," i.e. a future revision
  1569.     will likely relax it.
  1570.  
  1571.     This concession to current, restrictive linkers really had to be
  1572.     made, no matter how vehemently some people oppose it.  (The
  1573.     Rationale notes that its retention was "most painful.")  If you
  1574.     disagree, or have thought of a trick by which a compiler
  1575.     burdened with a restrictive linker could present the C
  1576.     programmer with the appearance of more significance in external
  1577.     identifiers, read the excellently-worded section 3.1.2 in the
  1578.     X3.159 Rationale (see question 5.1), which discusses several
  1579.     such schemes and explains why they could not be mandated.
  1580.  
  1581.     References: ANSI Sec. 3.1.2 p. 21, Sec. 3.9.1 p. 96, Rationale
  1582.     Sec. 3.1.2 pp. 19-21.
  1583.  
  1584. 5.15:    What is the difference between memcpy and memmove?
  1585.  
  1586. A:    memmove offers guaranteed behavior if the source and destination
  1587.     arguments overlap.  memcpy makes no such guarantee, and may
  1588.     therefore be more efficiently implementable.  When in doubt,
  1589.     it's safer to use memmove.
  1590.  
  1591.     References: ANSI Secs. 4.11.2.1, 4.11.2.2, Rationale
  1592.     Sec. 4.11.2 .
  1593.  
  1594. 5.16:    My compiler is rejecting the simplest possible test programs,
  1595.     with all kinds of syntax errors.
  1596.  
  1597. A:    Perhaps it is a pre-ANSI compiler, unable to accept function
  1598.     prototypes and the like.  See also questions 5.17 and 17.2.
  1599.  
  1600. 5.17:    Why are some ANSI/ISO Standard library routines showing up as
  1601.     undefined, even though I've got an ANSI compiler?
  1602.  
  1603. A:    It's not unusual to have a compiler available which accepts ANSI
  1604.     syntax, but not to have ANSI-compatible header files or run-time
  1605.     libraries installed.  See also questions 5.16 and 17.2.
  1606.  
  1607. 5.18:    Why won't the Frobozz Magic C Compiler, which claims to be ANSI
  1608.     compliant, accept this code?  I know that the code is ANSI,
  1609.     because gcc accepts it.
  1610.  
  1611. A:    Most compilers support a few non-Standard extensions, gcc more
  1612.     so than most.  Are you sure that the code being rejected doesn't
  1613.     rely on such an extension?  It is usually a bad idea to perform
  1614.     experiments with a particular compiler to determine properties
  1615.     of a language; the applicable standard may permit variations, or
  1616.     the compiler may be wrong.  See also question 4.4.
  1617.  
  1618. 5.19:    Why can't I perform arithmetic on a void * pointer?
  1619.  
  1620. A:    The compiler doesn't know the size of the pointed-to objects.
  1621.     Before performing arithmetic, cast the pointer either to char *
  1622.     or to the type you're trying to manipulate (but see question
  1623.     2.18).
  1624.  
  1625. 5.20:    Is char a[3] = "abc"; legal?  What does it mean?
  1626.  
  1627. A:    It is legal in ANSI C (and perhaps in a few pre-ANSI systems),
  1628.     though questionably useful.  It declares an array of size three,
  1629.     initialized with the three characters 'a', 'b', and 'c', without
  1630.     the usual terminating '\0' character; the array is therefore not
  1631.     a true C string and cannot be used with strcpy, printf %s, etc.
  1632.  
  1633.     References: ANSI Sec. 3.5.7 pp. 72-3.
  1634.  
  1635. 5.21:    What are #pragmas and what are they good for?
  1636.  
  1637. A:    The #pragma directive provides a single, well-defined "escape
  1638.     hatch" which can be used for all sorts of implementation-
  1639.     specific controls and extensions: source listing control,
  1640.     structure packing, warning suppression (like the old lint
  1641.     /* NOTREACHED */ comments), etc.
  1642.  
  1643.     References: ANSI Sec. 3.8.6 .
  1644.  
  1645. 5.22:    What does "#pragma once" mean?  I found it in some header files.
  1646.  
  1647. A:    It is an extension implemented by some preprocessors to help
  1648.     make header files idempotent; it is essentially equivalent to
  1649.     the #ifndef trick mentioned in question 6.4.
  1650.  
  1651. 5.23:    People seem to make a point of distinguishing between
  1652.     implementation-defined, unspecified, and undefined behavior.
  1653.     What's the difference?
  1654.  
  1655. A:    Briefly: implementation-defined means that an implementation
  1656.     must choose some behavior and document it.  Unspecified means
  1657.     that an implementation should choose some behavior, but need not
  1658.     document it.  Undefined means that absolutely anything might
  1659.     happen.  In no case does the Standard impose requirements; in
  1660.     the first two cases it occasionally suggests (and may require a
  1661.     choice from among) a small set of likely behaviors.
  1662.  
  1663.     If you're interested in writing portable code, you can ignore
  1664.     the distinctions, as you'll want to avoid code that depends on
  1665.     any of the three behaviors.
  1666.  
  1667.     References: ANSI Sec. 1.6, especially the Rationale.
  1668.  
  1669.  
  1670. Section 6. C Preprocessor
  1671.  
  1672. 6.1:    How can I write a generic macro to swap two values?
  1673.  
  1674. A:    There is no good answer to this question.  If the values are
  1675.     integers, a well-known trick using exclusive-OR could perhaps be
  1676.     used, but it will not work for floating-point values or
  1677.     pointers, or if the two values are the same variable (and the
  1678.     "obvious" supercompressed implementation for integral types
  1679.     a^=b^=a^=b is in fact illegal due to multiple side-effects; see
  1680.     questions 4.1 and 4.2).  If the macro is intended to be used on
  1681.     values of arbitrary type (the usual goal), it cannot use a
  1682.     temporary, since it does not know what type of temporary it
  1683.     needs, and standard C does not provide a typeof operator.
  1684.  
  1685.     The best all-around solution is probably to forget about using a
  1686.     macro, unless you're willing to pass in the type as a third
  1687.     argument.
  1688.  
  1689. 6.2:    I have some old code that tries to construct identifiers with a
  1690.     macro like
  1691.  
  1692.         #define Paste(a, b) a/**/b
  1693.  
  1694.     but it doesn't work any more.
  1695.  
  1696. A:    That comments disappeared entirely and could therefore be used
  1697.     for token pasting was an undocumented feature of some early
  1698.     preprocessor implementations, notably Reiser's.  ANSI affirms
  1699.     (as did K&R) that comments are replaced with white space.
  1700.     However, since the need for pasting tokens was demonstrated and
  1701.     real, ANSI introduced a well-defined token-pasting operator, ##,
  1702.     whiche this:
  1703.  
  1704.         #define Paste(a, b) a##b
  1705.  
  1706.     (See also question 5.4.)
  1707.  
  1708.     References: ANSI Sec. 3.8.3.3 p. 91, Rationale pp. 66-7.
  1709.  
  1710. 6.3:    What's the best way to write a multi-statement cpp macro?
  1711.  
  1712. A:    The usual goal is to write a macro that can be invoked as if it
  1713.     were a single function-call statement.  This means that the
  1714.     "caller" will be supplying the final semicolon, so the macro
  1715.     body should not.  The macro body cannot be a simple brace-
  1716.     delineated compound statement, because syntax errors would
  1717.     result if it were invoked (apparently as a single statement, but
  1718.     with a resultant extra semicolon) as the if branch of an if/else
  1719.     statement with an explicit else clause.
  1720.  
  1721.     The traditional solution is to use
  1722.  
  1723.         #define Func() do { \
  1724.             /* declarations */ \
  1725.             stmt1; \
  1726.             stmt2; \
  1727.             /* ... */ \
  1728.             } while(0)    /* (no trailing ; ) */
  1729.  
  1730.     When the "caller" appends a semicolon, this expansion becomes a
  1731.     single statement regardless of context.  (An optimizing compiler
  1732.     will remove any "dead" tests or branches on the constant
  1733.     condition 0, although lint may complain.)
  1734.  
  1735.     If all of the statements in the intended macro are simple
  1736.     expressions, with no declarations or loops, another technique is
  1737.     to write a single, parenthesized expression using one or more
  1738.     comma operators.  (See the example under question 6.10 below.
  1739.     This technique also allows a value to be "returned.")
  1740.  
  1741.     References: CT&P Sec. 6.3 pp. 82-3.
  1742.  
  1743. 6.4:    Is it acceptable for one header file to #include another?
  1744.  
  1745. A:    It's a question of style, and thus receives considerable debate.
  1746.     Many people believe that "nested #include files" are to be
  1747.     avoided: the prestigious Indian Hill Style Guide (see question
  1748.     14.3) disparages them; they can make it harder to find relevant
  1749.     definitions; they can lead to multiple-declaration errors if a
  1750.     file is #included twice; and they make manual Makefile
  1751.     maintenance very difficult.  On the other hand, they make it
  1752.     possible to use header files in a modular way (a header file
  1753.     #includes what it needs itself, rather than requiring each
  1754.     #includer to do so, a requirement that can lead to intractable
  1755.     headaches); a tool like grep (or a tags file) makes it easy to
  1756.     find definitions no matter where they are; a popular trick:
  1757.  
  1758.         #ifndef HEADERUSED
  1759.         #define HEADERUSED
  1760.         ...header file contents...
  1761.         #endif
  1762.  
  1763.     makes a header file "idempotent" so that it can safely be
  1764.     #included multiple times; and automated Makefile maintenance
  1765.     tools (which are a virtual necessity in large projects anyway)
  1766.     handle dependency generation in the face of nested #include
  1767.     files easily.  See also section 14.
  1768.  
  1769. 6.5:    Does the sizeof operator work in preprocessor #if directives?
  1770.  
  1771. A:    No.  Preprocessing happens during an earlier pass of
  1772.     compilation, before type names have been parsed.  Consider using
  1773.     the predefined constants in ANSI's <limits.h>, if applicable, or
  1774.     a "configure" script, instead.  (Better yet, try to write code
  1775.     which is inherently insensitive to type sizes.)
  1776.  
  1777.     References: ANSI Sec. 2.1.1.2 pp. 6-7, Sec. 3.8.1 p. 87
  1778.     footnote 83.
  1779.  
  1780. 6.6:    How can I use a preprocessor #if expression to tell if a machine
  1781.     is big-endian or little-endian?
  1782.  
  1783. A:    You probably can't.  (Preprocessor arithmetic uses only long
  1784.     ints, and there is no concept of addressing.)  Are you sure you
  1785.     need to know the machine's endianness explicitly?  Usually it's
  1786.     better to write code which doesn't care.
  1787.  
  1788. 6.7:    I've got this tricky processing I want to do at compile time and
  1789.     I can't figure out a way to get cpp to do it.
  1790.  
  1791. A:    cpp is not intended as a general-purpose preprocessor.  Rather
  1792.     than forcing it to do something inappropriate, consider writing
  1793.     your own little special-purpose preprocessing tool, instead.
  1794.     You can easily get a utility like make(1) to run it for you
  1795.     automatically.
  1796.  
  1797.     If you are trying to preprocess something other than C, consider
  1798.     using a general-purpose preprocessor (such as m4).
  1799.  
  1800. 6.8:    I inherited some code which contains far too many #ifdef's for
  1801.     my taste.  How can I preprocess the code to leave only one
  1802.     conditional compilation set, without running it through cpp and
  1803.     expanding all of the #include's and #define's as well?
  1804.  
  1805. A:    There are programs floating around called unifdef, rmifdef, and
  1806.     scpp which do exactly this.  (See question 17.12.)
  1807.  
  1808. 6.9:    How can I list all of the pre#defined identifiers?
  1809.  
  1810. A:    There's no standard way, although it is a frequent need.  If the
  1811.     compiler documentation is unhelpful, the most expedient way is
  1812.     probably to extract printable strings from the compiler or
  1813.     preprocessor executable with something like the Unix strings(1)
  1814.     utility.  Beware that many traditional system-selective
  1815.     pre#defined identifiers (e.g. "unix") are non-Standard (because
  1816.     they clash with the user's namespace) and are being removed or
  1817.     renamed.
  1818.  
  1819. 6.10:    How can I write a cpp macro which takes a variable number of
  1820.     arguments?
  1821.  
  1822. A:    One popular trick is to define the macro with a single argument,
  1823.     and call it with a double set of parentheses, which appear to
  1824.     the preprocessor to indicate a single argument:
  1825.  
  1826.         #define DEBUG(args) (printf("DEBUG: "), printf args)
  1827.  
  1828.         if(n != 0) DEBUG(("n is %d\n", n));
  1829.  
  1830.     The obvious disadvantage is that the caller must always remember
  1831.     to use the extra parentheses.  Other solutions are to use
  1832.     different macros (DEBUG1, DEBUG2, etc.) depending on the number
  1833.     of arguments, or to play games with commas:
  1834.  
  1835.         #define DEBUG(args) (printf("DEBUG: "), printf(args))
  1836.         #define _ ,
  1837.         DEBUG("i = %d" _ i)
  1838.  
  1839.     It is often better to use a bona-fide function, which can take a
  1840.     variable number of arguments in a well-defined way.  See
  1841.     questions 7.1 and 7.2.
  1842.  
  1843.  
  1844. Section 7. Variable-Length Argument Lists
  1845.  
  1846. 7.1:    How can I write a function that takes a variable number of
  1847.     arguments?
  1848.  
  1849. A:    Use the <stdarg.h> header (or, if you must, the older
  1850.     <varargs.h>).
  1851.  
  1852.     Here is a function which concatenates an arbitrary number of
  1853.     strings into malloc'ed memory:
  1854.  
  1855.         #include <stdlib.h>        /* for malloc, NULL, size_t */
  1856.         #include <stdarg.h>        /* for va_ stuff */
  1857.         #include <string.h>        /* for strcat et al */
  1858.  
  1859.         char *vstrcat(char *first, ...)
  1860.         {
  1861.             size_t len = 0;
  1862.             char *retbuf;
  1863.             va_list argp;
  1864.             char *p;
  1865.  
  1866.             if(first == NULL)
  1867.                 return NULL;
  1868.  
  1869.             len = strlen(first);
  1870.  
  1871.             va_start(argp, first);
  1872.  
  1873.             while((p = va_arg(argp, char *)) != NULL)
  1874.                 len += strlen(p);
  1875.  
  1876.             va_end(argp);
  1877.  
  1878.             retbuf = malloc(len + 1);    /* +1 for trailing \0 */
  1879.  
  1880.             if(retbuf == NULL)
  1881.                 return NULL;        /* error */
  1882.  
  1883.             (void)strcpy(retbuf, first);
  1884.  
  1885.             va_start(argp, first);
  1886.  
  1887.             while((p = va_arg(argp, char *)) != NULL)
  1888.                 (void)strcat(retbuf, p);
  1889.  
  1890.             va_end(argp);
  1891.  
  1892.             return retbuf;
  1893.         }
  1894.  
  1895.     Usage is something like
  1896.  
  1897.         char *str = vstrcat("Hello, ", "world!", (char *)NULL);
  1898.  
  1899.     Note the cast on the last argument.  (Also note that the caller
  1900.     must free the returned, malloc'ed storage.)
  1901.  
  1902.     Under a pre-ANSI compiler, rewrite the function definition
  1903.     without a prototype ("char *vstrcat(first) char *first; {"),
  1904.     include <stdio.h> rather than <stdlib.h>, add "extern
  1905.     char *malloc();", and use int instead of size_t.  You may also
  1906.     have to delete the (void) casts, and use the older varargs
  1907.     package instead of stdarg.  See the next question for hints.
  1908.  
  1909.     Remember that in variable-length argument lists, function
  1910.     prototypes do not supply parameter type information; therefore,
  1911.     default argument promotions apply (see question 5.8), and null
  1912.     pointer arguments must be typed explicitly (see question 1.2).
  1913.  
  1914.     References: K&R II Sec. 7.3 p. 155, Sec. B7 p. 254; H&S
  1915.     Sec. 13.4 pp. 286-9; ANSI Secs. 4.8 through 4.8.1.3 .
  1916.  
  1917. 7.2:    How can I write a function that takes a format string and a
  1918.     variable number of arguments, like printf, and passes them to
  1919.     printf to do most of the work?
  1920.  
  1921. A:    Use vprintf, vfprintf, or vsprintf.
  1922.  
  1923.     Here is an "error" routine which prints an error message,
  1924.     preceded by the string "error: " and terminated with a newline:
  1925.  
  1926.         #include <stdio.h>
  1927.         #include <stdarg.h>
  1928.  
  1929.         void
  1930.         error(char *fmt, ...)
  1931.         {
  1932.             va_list argp;
  1933.             fprintf(stderr, "error: ");
  1934.             va_start(argp, fmt);
  1935.             vfprintf(stderr, fmt, argp);
  1936.             va_end(argp);
  1937.             fprintf(stderr, "\n");
  1938.         }
  1939.  
  1940.     To use the older <varargs.h> package, instead of <stdarg.h>,
  1941.     change the function header to:
  1942.  
  1943.         vst)
  1944.         va_dcl
  1945.         {
  1946.             char *fmt;
  1947.  
  1948.     change the va_start line to
  1949.  
  1950.         va_start(argp);
  1951.  
  1952.     and add the line
  1953.  
  1954.         fmt = va_arg(argp, char *);
  1955.  
  1956.     between the calls to va_start and vfprintf.  (Note that there is
  1957.     no semicolon after va_dcl.)
  1958.  
  1959.     References: K&R II Sec. 8.3 p. 174, Sec. B1.2 p. 245; H&S
  1960.     Sec. 17.12 p. 337; ANSI Secs. 4.9.6.7, 4.9.6.8, 4.9.6.9 .
  1961.  
  1962. 7.3:    How can I discover how many arguments a function was actually
  1963.     called with?
  1964.  
  1965. A:    This information is not available to a portable program.  Some
  1966.     old systems provided a nonstandard nargs() function, but its use
  1967.     was always questionable, since it typically returned the number
  1968.     of words passed, not the number of arguments.  (Structures and
  1969.     floating point values are usually passed as several words.)
  1970.  
  1971.     Any function which takes a variable number of arguments must be
  1972.     able to determine from the arguments themselves how many of them
  1973.     there are.  printf-like functions do this by looking for
  1974.     formatting specifiers (%d and the like) in the format string
  1975.     (which is why these functions fail badly if the format string
  1976.     does not match the argument list).  Another common technique
  1977.     (useful when the arguments are all of the same type) is to use a
  1978.     sentinel value (often 0, -1, or an appropriately-cast null
  1979.     pointer) at the end of the list (see the execl and vstrcat
  1980.     examples under questions 1.2 and 7.1 above).
  1981.  
  1982. 7.4:    I can't get the va_arg macro to pull in an argument of type
  1983.     pointer-to-function.
  1984.  
  1985. A:    The type-rewriting games which the va_arg macro typically plays
  1986.     are stymied by overly-complicated types such as pointer-to-
  1987.     function.  If you use a typedef for the function pointer type,
  1988.     however, all will be well.
  1989.  
  1990.     References: ANSI Sec. 4.8.1.2 p. 124.
  1991.  
  1992. 7.5:    How can I write a function which takes a variable number of
  1993.     arguments and passes them to some other function (which takes a
  1994.     variable number of arguments)?
  1995.  
  1996. A:    In general, you cannot.  You must provide a version of that
  1997.     other function which accepts a va_list pointer, as does vfprintf
  1998.     in the example above.  If the arguments must be passed directly
  1999.     as actual arguments (not indirectly through a va_list pointer)
  2000.     to another function which is itself variadic (for which you do
  2001.     not have the option of creating an alternate, va_list-accepting
  2002.     version) no portable solution is possible.  (The problem can be
  2003.     solved by resorting to machine-specific assembly language.)
  2004.  
  2005. 7.6:    How can I call a function with an argument list built up at run
  2006.     time?
  2007.  
  2008. A:    There is no guaranteed or portable way to do this.  If you're
  2009.     curious, ask this list's editor, who has a few wacky ideas you
  2010.     could try...  (See also question 16.11.)
  2011.  
  2012.  
  2013. Section 8. Boolean Expressions and Variables
  2014.  
  2015. 8.1:    What is the right type to use for boolean values in C?  Why
  2016.     isn't it a standard type?  Should #defines or enums be used for
  2017.     the true and false values?
  2018.  
  2019. A:    C does not provide a standard boolean type, because picking one
  2020.     involves a space/time tradeoff which is best decided by the
  2021.     programmer.  (Using an int for a boolean may be faster, while
  2022.     using char may save data space.)
  2023.  
  2024.     The choice between #defines and enums is arbitrary and not
  2025.     terribly interesting (see also question 9.1).  Use any of
  2026.  
  2027.         #define TRUE  1            #define YES 1
  2028.         #define FALSE 0            #define NO  0
  2029.  
  2030.         enum bool {false, true};    enum bool {no, yes};
  2031.  
  2032.     or use raw 1 and 0, as long as you are consistent within one
  2033.     program or project.  (An enum may be preferable if your debugger
  2034.     expands enum values when examining variables.)
  2035.  
  2036.     Some people prefer variants like
  2037.  
  2038.         #define TRUE (1==1)
  2039.         #define FALSE (!TRUE)
  2040.  
  2041.     or define "helper" macros such as
  2042.  
  2043.         #define Istrue(e) ((e) != 0)
  2044.  
  2045.     These don't buy anything (see question 8.2 below; see also
  2046.     question 1.6).
  2047.  
  2048. 8.2:    Isn't #defining TRUE to be 1 dangerous, since any nonzero value
  2049.     is considered "true" in C?  What if a built-in boolean or
  2050.     relational operator "returns" something other than 1?
  2051.  
  2052. A:    It is true (sic) that any nonzero value is considered true in C,
  2053.     but this applies only "on input", i.e. where a boolean value is
  2054.     expected.  When a boolean value is generated by a built-in
  2055.     operator, it is guaranteed to be 1 or 0.  Therefore, the test
  2056.  
  2057.         if((a == b) == TRUE)
  2058.  
  2059.     will work as expected (as long as TRUE is 1), but it is
  2060.     obviously silly.  In general, explicit tests against TRUE and
  2061.     FALSE are undesirable, because some library functions (notably
  2062.     isupper, isalpha, etc.) return, on success, a nonzero value
  2063.     which is _not_ necessarily 1.  (Besides, if you believe that
  2064.     "if((a == b) == TRUE)" is an improvement over "if(a == b)", why
  2065.     stop there?  Why not use "if(((a == b) == TRUE) == TRUE)"?)  A
  2066.     good rule of thumb is to use TRUE and FALSE (or the like) only
  2067.     for assignment to a Boolean variable or function parameter, or
  2068.     as the return value from a Boolean function, but never in a
  2069.     comparison.
  2070.  
  2071.     The preprocessor macros TRUE and FALSE are used for code
  2072.     readability, not because the underlying values might ever
  2073.     change.  (See also questions 1.7 and 1.9.)
  2074.  
  2075.     References: K&R I Sec. 2.7 p. 41; K&R II Sec. 2.6 p. 42,
  2076.     Sec. A7.4.7 p. 204, Sec. A7.9 p. 206; ANSI Secs. 3.3.3.3, 3.3.8,
  2077.     3.3.9, 3.3.13, 3.3.14, 3.3.15, 3.6.4.1, 3.6.5; Achilles and the
  2078.     Tortoise.
  2079.  
  2080.  
  2081. Section 9. Structs, Enums, and Unions
  2082.  
  2083. 9.1:    What is the difference between an enum and a series of
  2084.     preprocessor #defines?
  2085.  
  2086. A:    At the present time, there is little difference.  Although many
  2087.     people might have wished otherwise, the ANSI standard says that
  2088.     enumerations may be freely intermixed with integral types,
  2089.     without errors.  (If such intermixing were disallowed without
  2090.     explicit casts, judicious use of enums could catch certain
  2091.     programming errors.)
  2092.  
  2093.     Some advantages of enums are that the numeric values are
  2094.     automatically assigned, that a debugger may be able to display
  2095.     the symbolic values when enum variables are examined, and that
  2096.     they obey block scope.  (A compiler may also generate nonfatal
  2097.     warnings when enums and ints are indiscriminately mixed, since
  2098.     doing so can still be considered bad style even though it is not
  2099.     strictly illegal).  A disadvantage is that the programmer has
  2100.     little control over the size (or over those nonfatal warnings).
  2101.  
  2102.     References: K&R II Sec. 2.3 p. 39, Sec. A4.2 p. 196; H&S
  2103.     Sec. 5.5 p. 100; ANSI Secs. 3.1.2.5, 3.5.2, 3.5.2.2 .
  2104.  
  2105. 9.2:    I heard that structures could be assigned to variables and
  2106.     passed to and from functions, but K&R I says not.
  2107.  
  2108. A:    What K&R I said was that the restrictions on struct operations
  2109.     would be lifted in a forthcoming version of the compiler, and in
  2110.     fact struct assignment and passing were fully functional in
  2111.     Ritchie's compiler even as K&R I was being published.  Although
  2112.     a few early C compilers lacked struct assignment, all modern
  2113.     compilers support it, and it is part of the ANSI C standard, so
  2114.     there should be no reluctance to use it.
  2115.  
  2116.     References: K&R I Sec. 6.2 p. 121; K&R II Sec. 6.2 p. 129; H&S
  2117.     Sec. 5.6.2 p. 103; ANSI Secs. 3.1.2.5, 3.2.2.1, 3.3.16 .
  2118.  
  2119. 9.3:    How does struct passing and returning work?
  2120.  
  2121. A:    When structures are passed as arguments to functions, the entire
  2122.     struct is typically pushed on the stack, using as many words as
  2123.     are required.  (Programmers often choose to use pointers to
  2124.     structures instead, precisely to avoid this overhead.)
  2125.  
  2126.     Structures are often returned from functions in a location
  2127.     pointed to by an extra, compiler-supplied "hidden" argument to
  2128.     the function.  Some older compilers used a special, static
  2129.     location for structure returns, although this made struct-valued
  2130.     functions nonreentrant, which ANSI C disallows.
  2131.  
  2132.     References: ANSI Sec. 2.2.3 p. 13.
  2133.  
  2134. 9.4:    The following program works correctly, but it dumps core after
  2135.     it finishes.  Why?
  2136.  
  2137.         struct list
  2138.             {
  2139.             char *item;
  2140.             struct list *next;
  2141.             }
  2142.  
  2143.         /* Here is the main program. */
  2144.  
  2145.         main(argc, argv)
  2146.         ...
  2147.  
  2148. A:    A missing semicolon causes the compiler to believe that main
  2149.     returns a structure.  (The connection is hard to see because of
  2150.     the intervening comment.)  Since struct-valued functions are
  2151.     usually implemented by adding a hidden return pointer, the
  2152.     generated code for main() tries to accept three arguments,
  2153.     although only two are passed (in this case, by the C start-up
  2154.     code).  See also question 17.21.
  2155.  
  2156.     References: CT&P Sec. 2.3 pp. 21-2.
  2157.  
  2158. 9.5:    Why can't you compare structs?
  2159.  
  2160. A:    There is no reasonable way for a compiler to implement struct
  2161.     comparison which is consistent with C's low-level flavor.  A
  2162.     byte-by-byte comparison could be invalidated by random bits
  2163.     present in unused "holes" in the structure (such padding is used
  2164.     to keep the alignment of later fields correct; see questions
  2165.     9.10 and 9.11).  A field-by-field comparison would require
  2166.     unacceptable amounts of repetitive, in-line code for large
  2167.     structures.
  2168.  
  2169.     If you want to compare two structures, you must write your own
  2170.     function to do so.  C++ would let you arrange for the ==
  2171.     operator to map to your function.
  2172.  
  2173.     References: K&R II Sec. 6.2 p. 129; H&S Sec. 5.6.2 p. 103; ANSI
  2174.     Rationale Sec. 3.3.9 p. 47.
  2175.  
  2176. 9.6:    How can I read/write structs from/to data files?
  2177.  
  2178. A:    It is relatively straightforward to write a struct out using
  2179.     fwrite:
  2180.  
  2181.         fwrite((char *)&somestruct, sizeof(somestruct), 1, fp);
  2182.  
  2183.     and a corresponding fread invocation can read it back in.
  2184.     However, data files so written will _not_ be very portable (see
  2185.     questions 9.11 and 17.3).  Note also that on many systems you
  2186.     must use the "b" flag when fopening the files.
  2187.  
  2188. 9.7:    I came across some code that declared a structure like this:
  2189.  
  2190.         struct name
  2191.             {
  2192.             int namelen;
  2193.             char name[1];
  2194.             };
  2195.  
  2196.     and then did some tricky allocation to make the name array act
  2197.     like it had several elements.  Is this legal and/or portable?
  2198.  
  2199. A:    This technique is popular, although Dennis Ritchie has called it
  2200.     "unwarranted chumminess with the C implementation."  An ANSI
  2201.     Interpretation Ruling has deemed it (more precisely, access
  2202.     beyond the declared size of the name field) to be not strictly
  2203.     conforming, although a thorough treatment of the arguments
  2204.     surrounding the legality of the technique is beyond the scope of
  2205.     this list.  It seems, however, to be portable to all known
  2206.     implementations.  (Compilers which check array bounds carefully
  2207.     might issue warnings.)
  2208.  
  2209.     To be on the safe side, it may be preferable to declare the
  2210.     variable-size element very large, rather than very small; in the
  2211.     case of the above example:
  2212.  
  2213.         ...
  2214.         char name[MAXSIZE];
  2215.         ...
  2216.  
  2217.     where MAXSIZE is larger than any name which will be stored.
  2218.     (The trick so modified is said to be in conformance with the
  2219.     Standard.)
  2220.  
  2221.     References: ANSI Rationale Sec. 3.5.4.2 pp. 54-5.
  2222.  
  2223. 9.8:    How can I determine the byte offset of a field within a
  2224.     structure?
  2225.  
  2226. A:    ANSI C defines the offsetof macro, which should be used if
  2227.     available; see <stddef.h>.  If you don't have it, a suggested
  2228.     implementation is
  2229.  
  2230.         #define offsetof(type, mem) ((size_t) \
  2231.             ((char *)&((type *) 0)->mem - (char *)((type *) 0)))
  2232.  
  2233.     This implementation is not 100% portable; some compilers may
  2234.     legitimately refuse to accept it.
  2235.  
  2236.     See the next question for a usage hint.
  2237.  
  2238.     References: ANSI Sec. 4.1.5, Rationale Sec. 3.5.4.2 p. 55.
  2239.  
  2240. 9.9:    How can I access structure fields by name at run time?
  2241.  
  2242. A:    Build a table of names and offsets, using the offsetof() macro.
  2243.     The offset of field b in struct a is
  2244.  
  2245.         offsetb = offsetof(struct a, b)
  2246.  
  2247.     If structp is a pointer to an instance of this structure, and b
  2248.     is an int field with offset as computed above, b's value can be
  2249.     set indirectly with
  2250.  
  2251.         *(int *)((char *)structp + offsetb) = value;
  2252.  
  2253. 9.10:    Why does sizeof report a larger size than I expect for a
  2254.     structure type, as if there was padding at the end?
  2255.  
  2256. A:    Structures may have this padding (as well as internal padding;
  2257.     see also question 9.5), so that alignment properties will be
  2258.     preserved when an array of contiguous structures is allocated.
  2259.  
  2260. 9.11:    My compiler is leaving holes in structures, which is wasting
  2261.     space and preventing "binary" I/O to external data files.  Can I
  2262.     turn off the padding, or otherwise control the alignment of
  2263.     structs?
  2264.  
  2265. A:    Your compiler may provide an extension to give you this control
  2266.     (perhaps a #pragma), but there is no standard method.  See also
  2267.     question 17.3.
  2268.  
  2269. 9.12:    Can I initialize unions?
  2270.  
  2271. A:    ANSI Standard C allows an initializer for the first member of a
  2272.     union.  There is no standard way of initializing the other
  2273.     members (nor, under a pre-ANSI compiler, is there generally any
  2274.     way of initializing any of them).
  2275.  
  2276. 9.13:    How can I pass constant values to routines which accept struct
  2277.     arguments?
  2278.  
  2279. A:    C has no way of generating anonymous struct values.  You will
  2280.     have to use a temporary struct variable.
  2281.  
  2282.  
  2283. Section 10. Declarations
  2284.  
  2285. 10.1:    How do you decide which integer type to use?
  2286.  
  2287. A:    If you might need large values (above 32767 or below -32767),
  2288.     use long.  Otherwise, if space is very important (there are
  2289.     large arrays or many structures), use short.  Otherwise, use
  2290.     int.  If well-defined overflow characteristics are important
  2291.     and/or negative values are not, use the corresponding unsigned
  2292.     types.  (But beware of mixing signed and unsigned in
  2293.     expressions.)  Similar arguments apply when deciding between
  2294.     float and double.
  2295.  
  2296.     Although char or unsigned char can be used as a "tiny" int type,
  2297.     doing so is often more trouble than it's worth, due to
  2298.     unpredictable sign extension and increased code size.
  2299.  
  2300.     These rules obviously don't apply if the address of a variable
  2301.     is taken and must have a particular type.
  2302.  
  2303.     If for some reason you need to declare something with an _exact_
  2304.     size (usually the only good reason for doing so is when
  2305.     attempting to conform to some externally-imposed storage layout,
  2306.     but see question 17.3), be sure to encapsulate the choice behind
  2307.     an appropriate typedef.
  2308.  
  2309. 10.2:    What should the 64-bit type on new, 64-bit machines be?
  2310.  
  2311. A:    Some vendors of C products for 64-bit machines support 64-bit
  2312.     long ints.  Others fear that too much existing code depends on
  2313.     sizeof(int) == sizeof(long) == 32 bits, and introduce a new 64-
  2314.     bit long long (or __longlong) type instead.
  2315.  
  2316.     Programmers interested in writing portable code should therefore
  2317.     insulate their 64-bit type needs behind appropriate typedefs.
  2318.     Vendors who feel compelled to introduce a new, longer integral
  2319.     type should advertise it as being "at least 64 bits" (which is
  2320.     truly new; a type traditional C doesn't have), and not "exactly
  2321.     64 bits."
  2322.  
  2323. 10.3:    I can't seem to define a linked list successfully.  I tried
  2324.  
  2325.         typedef struct
  2326.             {
  2327.             char *item;
  2328.             NODEPTR next;
  2329.             } *NODEPTR;
  2330.  
  2331.     but the compiler gave me error messages.  Can't a struct in C
  2332.     contain a pointer to itself?
  2333.  
  2334. A:    Structs in C can certainly contain pointers to themselves; the
  2335.     discussion and example in section 6.5 of K&R make this clear.
  2336.     The problem with this example is that the NODEPTR typedef is not
  2337.     complete at the point where the "next" field is declared.  To
  2338.     fix it, first give the structure a tag ("struct node").  Then,
  2339.     declare the "next" field as "struct node *next;", and/or move
  2340.     the typedef declaration wholly before or wholly after the struct
  2341.     declaration.  One corrected version would be
  2342.  
  2343.         struct node
  2344.             {
  2345.             char *item;
  2346.             struct node *next;
  2347.             };
  2348.  
  2349.         typedef struct node *NODEPTR;
  2350.  
  2351.     , and there are at least three other equivalently correct ways
  2352.     of arranging it.
  2353.  
  2354.     A similar problem, with a similar solution, can arise when
  2355.     attempting to declare a pair of typedef'ed mutually referential
  2356.     structures.
  2357.  
  2358.     References: K&R I Sec. 6.5 p. 101; K&R II Sec. 6.5 p. 139; H&S
  2359.     Sec. 5.6.1 p. 102; ANSI Sec. 3.5.2.3 .
  2360.  
  2361. 10.4:    How do I declare an array of N pointers to functions returning
  2362.     pointers to functions returning pointers to characters?
  2363.  
  2364. A:    This question can be answered in at least three ways:
  2365.  
  2366.     1.  char *(*(*a[N])())();
  2367.  
  2368.     2.  Build the declaration up in stages, using typedefs:
  2369.  
  2370.         typedef char *pc;    /* pointer to char */
  2371.         typedef pc fpc();    /* function returning pointer to char */
  2372.         typedef fpc *pfpc;    /* pointer to above */
  2373.         typedef pfpc fpfpc();    /* function returning... */
  2374.         typedef fpfpc *pfpfpc;    /* pointer to... */
  2375.         pfpfpc a[N];        /* array of... */
  2376.  
  2377.     3.  Use the cdecl program, which turns English into C and vice
  2378.         versa:
  2379.  
  2380.         cdecl> declare a as array of pointer to function returning
  2381.              pointer to function returning pointer to char
  2382.         char *(*(*a[])())()
  2383.  
  2384.         cdecl can also explain complicated declarations, help with
  2385.         casts, and indicate which set of parentheses the arguments
  2386.         icated function definitions, like the
  2387.         above).  Versions of cdecl are in volume 14 of
  2388.         comp.sources.unix (see question 17.12) and K&R II.
  2389.  
  2390.     Any good book on C should explain how to read these complicated
  2391.     C declarations "inside out" to understand them ("declaration
  2392.     mimics use").
  2393.  
  2394.     References: K&R II Sec. 5.12 p. 122; H&S Sec. 5.10.1 p. 116.
  2395.  
  2396. 10.5:    I'm building a state machine with a bunch of functions, one for
  2397.     each state.  I want to implement state transitions by having
  2398.     each function return a pointer to the next state function.  I
  2399.     find a limitation in C's declaration mechanism: there's no way
  2400.     to declare these functions as returning a pointer to a function
  2401.     returning a pointer to a function returning a pointer to a
  2402.     function...
  2403.  
  2404. A:    You can't do it directly.  Either have the function return a
  2405.     generic function pointer type, and apply a cast before calling
  2406.     through it; or have it return a structure containing only a
  2407.     pointer to a function returning that structure.
  2408.  
  2409. 10.6:    My compiler is complaining about an invalid redeclaration of a
  2410.     function, but I only define it once and call it once.
  2411.  
  2412. A:    Functions which are called without a declaration in scope (or
  2413.     before they are declared) are assumed to be declared as
  2414.     returning int, leading to discrepancies if the function is later
  2415.     declared otherwise.  Non-int functions must be declared before
  2416.     they are called.
  2417.  
  2418.     References: K&R I Sec. 4.2 pp. 70; K&R II Sec. 4.2 p. 72; ANSI
  2419.     Sec. 3.3.2.2 .
  2420.  
  2421. 10.7:    What's the best way to declare and define global variables?
  2422.  
  2423. A:    First, though there can be many _declarations_ (and in many
  2424.     translation units) of a single "global" (strictly speaking,
  2425.     "external") variable (or function), there must be exactly one
  2426.     _definition_.  (The definition is the declaration that actually
  2427.     allocates space, and provides an initialization value, if any.)
  2428.     It is best to place the definition in some central (to the
  2429.     program, or to the module) .c file, with an external declaration
  2430.     in a header (".h") file, which is #included wherever the
  2431.     declaration is needed.  The .c file containing the definition
  2432.     should also #include the header file containing the external
  2433.     declaration, so that the compiler can check that the
  2434.     declarations match.
  2435.  
  2436.     This rule promotes a high degree of portability, and is
  2437.     consistent with the requirements of the ANSI C Standard.  Note
  2438.     that Unix compilers and linkers typically use a "common model"
  2439.     which allows multiple (uninitialized) definitions.  A few very
  2440.     odd systems may require an explicit initializer to distinguish a
  2441.     definition from an external declaration.
  2442.  
  2443.     It is possible to use preprocessor tricks to arrange that the
  2444.     declaration need only be typed once, in the header file, and
  2445.     "turned into" a definition, during exactly one #inclusion, via a
  2446.     special #define.
  2447.  
  2448.     References: K&R I Sec. 4.5 pp. 76-7; K&R II Sec. 4.4 pp. 80-1;
  2449.     ANSI Sec. 3.1.2.2 (esp. Rationale), Secs. 3.7, 3.7.2,
  2450.     Sec. F.5.11; H&S Sec. 4.8 pp. 79-80; CT&P Sec. 4.2 pp. 54-56.
  2451.  
  2452. 10.8:    What does extern mean in a function declaration?
  2453.  
  2454. A:    It can be used as a stylistic hint to indicate that the
  2455.     function's definition is probably in another source file, but
  2456.     there is no formal difference between
  2457.  
  2458.         extern int f();
  2459.     and
  2460.         int f();
  2461.  
  2462.     References: ANSI Sec. 3.1.2.2 .
  2463.  
  2464. 10.9:    I finally figured out the syntax for declaring pointers to
  2465.     functions, but now how do I initialize one?
  2466.  
  2467. A:    Use something like
  2468.  
  2469.         extern int func();
  2470.         int (*fp)() = func;
  2471.  
  2472.     When the name of a function appears in an expression but is not
  2473.     being called (i.e. is not followed by a "("), it "decays" into a
  2474.     pointer (i.e. it has its address implicitly taken), much as an
  2475.     array name does.
  2476.  
  2477.     An explicit extern declaration for the function is normally
  2478.     needed, since implicit external function declaration does not
  2479.     happen in this case (again, because the function name is not
  2480.     followed by a "(").
  2481.  
  2482. 10.10:    I've seen different methods used for calling through pointers to
  2483.     functions.  What's the story?
  2484.  
  2485. A:    Originally, a pointer to a function had to be "turned into" a
  2486.     "real" function, with the * operator (and an extra pair of
  2487.     parentheses, to keep the precedence straight), before calling:
  2488.  
  2489.         int r, func(), (*fp)() = func;
  2490.         r = (*fp)();
  2491.  
  2492.     It can also be argued that functions are always called through
  2493.     pointers, but that "real" functions decay implicitly into
  2494.     pointers (in expressions, as they do in initializations) and so
  2495.     cause no trouble.  This reasoning, made widespread through pcc
  2496.     and adopted in the ANSI standard, means that
  2497.  
  2498.         r = fp();
  2499.  
  2500.     is legal and works correctly, whether fp is a function or a
  2501.     pointer to one.  (The usage has always been unambiguous; there
  2502.     is nothing you ever could have done with a function pointer
  2503.     followed by an argument list except call through it.)  An
  2504.     explicit * is harmless, and still allowed (and recommended, if
  2505.     portability to older compilers is important).
  2506.  
  2507.     References: ANSI Sec. 3.3.2.2 p. 41, Rationale p. 41.
  2508.  
  2509. 10.11:    What's the auto keyword good for?
  2510.  
  2511. A:    Nothing; it's obsolete.
  2512.  
  2513.  
  2514. Section 11. Stdio
  2515.  
  2516. 11.1:    What's wrong with this code:
  2517.  
  2518.         char c;
  2519.         while((c = getchar()) != EOF)...
  2520.  
  2521. A:    For one thing, the variable to hold getchar's return value must
  2522.     be an int.  getchar can return all possible character values, as
  2523.     well as EOF.  By passing getchar's return value through a char,
  2524.     either a normal character might be misinterpreted as EOF, or the
  2525.     EOF might be altered (particularly if type char is unsigned) and
  2526.     so never seen.
  2527.  
  2528.     References: CT&P Sec. 5.1 p. 70.
  2529.  
  2530. 11.2:    How can I print a '%' character in a printf format string?  I
  2531.     tried \%, but it didn't work.
  2532.  
  2533. A:    Simply double the percent sign: %% .
  2534.  
  2535.     References: K&R I Sec. 7.3 p. 147; K&R II Sec. 7.2 p. 154; ANSI
  2536.     Sec. 4.9.6.1 .
  2537.  
  2538. 11.3:    Why doesn't the code scanf("%d", i); work?
  2539.  
  2540. A:    scanf needs pointers to the variables it is to fill in; you must
  2541.     call scanf("%d", &i);
  2542.  
  2543. 11.4:    Why doesn't this code:
  2544.  
  2545.         double d;
  2546.         scanf("%f", &d);
  2547.  
  2548.     work?
  2549.  
  2550. A:    scanf uses %lf for values of type double, and %f for float.
  2551.     (Note the discrepancy with printf, which uses %f for both double
  2552.     and float, due to C's default argument promotion rules.)
  2553.  
  2554. 11.5:    Why won't the code
  2555.  
  2556.         while(!feof(infp)) {
  2557.             fgets(buf, MAXLINE, infp);
  2558.             fputs(buf, outfp);
  2559.         }
  2560.  
  2561.     work?
  2562.  
  2563. A:    C's I/O is not like Pascal's.  EOF is only indicated _after_ an
  2564.     input routine has tried to read, and has reached end-of-file.
  2565.     Usually, you should just check the return value of the input
  2566.     routine (fgets in this case); often, you don't need to use
  2567.     feof() at all.
  2568.  
  2569. 11.6:    Why does everyone say not to use gets()?
  2570.  
  2571. A:    It cannot be told the size of the buffer it's to read into, so
  2572.     it cannot be prevented from overflowing that buffer.  See
  2573.     question 3.1 for a code fragment illustrating the replacement of
  2574.     gets() with fgets().
  2575.  
  2576. 11.7:    Why does errno contain ENOTTY after a call to printf?
  2577.  
  2578. A:    Many implementations of the stdio package adjust their behavior
  2579.     slightly if stdout is a terminal.  To make the determination,
  2580.     these implementations perform an operation which fails (with
  2581.     ENOTTY) if stdout is not a terminal.  Although the output
  2582.     operation goes on to complete successfully, errno still contains
  2583.     ENOTTY.
  2584.  
  2585.     References: CT&P Sec. 5.4 p. 73.
  2586.  
  2587. 11.8:    My program's prompts and intermediate output don't always show
  2588.     up on the screen, especially when I pipe the output through
  2589.     another program.
  2590.  
  2591. A:    It is best to use an explicit fflush(stdout) whenever output
  2592.     should definitely be visible.  Several mechanisms attempt to
  2593.     perform the fflush for you, at the "right time," but they tend
  2594.     to apply only when stdout is a terminal.  (See question 11.7.)
  2595.  
  2596. 11.9:    When I read from the keyboard with scanf, it seems to hang until
  2597.     I type one extra line of input.
  2598.  
  2599. A:    scanf was designed for free-format input, which is seldom what
  2600.     you want when reading from the keyboard.  In particular, "\n" in
  2601.     a format string does _not_ mean to expect a newline, but rather
  2602.     to read and discard characters as long as each is a whitespace
  2603.     character.
  2604.  
  2605.     A related problem is that unexpected non-numeric input can cause
  2606.     scanf to "jam."  Because of these problems, it is usually better
  2607.     to use fgets to read a whole line, and then use sscanf or other
  2608. the line buffer.  If you do use
  2609.     sscanf, don't forget to check the return value to make sure that
  2610.     the expected number of items were found.
  2611.  
  2612. 11.10:    I'm trying to update a file in place, by using fopen mode "r+",
  2613.     then reading a certain string, and finally writing back a
  2614.     modified string, but it's not working.
  2615.  
  2616. A:    Be sure to call fseek before you write, both to seek back to the
  2617.     beginning of the string you're trying to overwrite, and because
  2618.     an fseek or fflush is always required between reading and
  2619.     writing in the read/write "+" modes.  Also, remember that you
  2620.     can only overwrite characters with the same number of
  2621.     replacement characters; see also question 17.4.
  2622.  
  2623.     References: ANSI Sec. 4.9.5.3 p. 131.
  2624.  
  2625. 11.11:    How can I read one character at a time, without waiting for the
  2626.     RETURN key?
  2627.  
  2628. A:    See question 16.1.
  2629.  
  2630. 11.12:    How can I flush pending input so that a user's typeahead isn't
  2631.     read at the next prompt?  Will fflush(stdin) work?
  2632.  
  2633. A:    fflush is defined only for output streams.  Since its definition
  2634.     of "flush" is to complete the writing of buffered characters
  2635.     (not to discard them), discarding unread input would not be an
  2636.     analogous meaning for fflush on input streams.  There is no
  2637.     standard way to discard unread characters from a stdio input
  2638.     buffer, nor would such a way be sufficient; unread characters
  2639.     can also accumulate in other, OS-level input buffers.
  2640.  
  2641. 11.13:    How can I redirect stdin or stdout to a file from within a
  2642.     program?
  2643.  
  2644. A:    Use freopen.
  2645.  
  2646. 11.14:    Once I've used freopen, how can I get the original stdout (or
  2647.     stdin) back?
  2648.  
  2649. A:    If you need to switch back and forth, the best all-around
  2650.     solution is not to use freopen in the first place.  Try using
  2651.     your own explicit output (or input) stream variable, which you
  2652.     can reassign at will, while leaving the original stdout (or
  2653.     stdin) undisturbed.
  2654.  
  2655. 11.15:    How can I recover the file name given an open file descriptor?
  2656.  
  2657. A:    This problem is, in general, insoluble.  Under Unix, for
  2658.     instance, a scan of the entire disk, (perhaps requiring special
  2659.     permissions) would theoretically be required, and would fail if
  2660.     the file descriptor was a pipe or referred to a deleted file
  2661.     (and could give a misleading answer for a file with multiple
  2662.     links).  It is best to remember the names of files yourself when
  2663.     you open them (perhaps with a wrapper function around fopen).
  2664.  
  2665.  
  2666. Section 12. Library Subroutines
  2667.  
  2668. 12.1:    Why does strncpy not always place a '\0' termination in the
  2669.     destination string?
  2670.  
  2671. A:    strncpy was first designed to handle a now-obsolete data
  2672.     structure, the fixed-length, not-necessarily-\0-terminated
  2673.     "string."  strncpy is admittedly a bit cumbersome to use in
  2674.     other contexts, since you must often append a '\0' to the
  2675.     destination string by hand.
  2676.  
  2677. 12.2:    I'm trying to sort an array of strings with qsort, using strcmp
  2678.     as the comparison function, but it's not working.
  2679.  
  2680. A:    By "array of strings" you probably mean "array of pointers to
  2681.     char."  The arguments to qsort's comparison function are
  2682.     pointers to the objects being sorted, in this case, pointers to
  2683.     pointers to char.  (strcmp, of course, accepts simple pointers
  2684.     to char.)
  2685.  
  2686.     The comparison routine's arguments are expressed as "generic
  2687.     pointers," const void * or char *.  They must be converted back
  2688.     to what they "really are" (char **) and dereferenced, yielding
  2689.     char *'s which can be usefully compared.  Write a comparison
  2690.     function like this:
  2691.  
  2692.         int pstrcmp(p1, p2)    /* compare strings through pointers */
  2693.         char *p1, *p2;        /* const void * for ANSI C */
  2694.         {
  2695.             return strcmp(*(char **)p1, *(char **)p2);
  2696.         }
  2697.  
  2698.     Beware of the discussion in K&R II Sec. 5.11 pp. 119-20, which
  2699.     is not discussing Standard library qsort.
  2700.  
  2701. 12.3:    Now I'm trying to sort an array of structures with qsort.  My
  2702.     comparison routine takes pointers to structures, but the
  2703.     compiler complains that the function is of the wrong type for
  2704.     qsort.  How can I cast the function pointer to shut off the
  2705.     warning?
  2706.  
  2707. A:    The conversions must be in the comparison function, which must
  2708.     be declared as accepting "generic pointers" (const void * or
  2709.     char *) as discussed in question 12.2 above.  The code might
  2710.     look like
  2711.  
  2712.         int mystructcmp(p1, p2)
  2713.         char *p1, *p2;        /* const void * for ANSI C */
  2714.         {
  2715.             struct mystruct *sp1 = (struct mystruct *)p1;
  2716.             struct mystruct *sp2 = (struct mystruct *)p2;
  2717.             /* now compare sp1->whatever and sp2-> ... */
  2718.         }
  2719.  
  2720.     (If, on the other hand, you're sorting pointers to structures,
  2721.     you'll need indirection, as in question 12.2:
  2722.     sp1 = *(struct mystruct **)p1 .)
  2723.  
  2724. 12.4:    How can I convert numbers to strings (the opposite of atoi)?  Is
  2725.     there an itoa function?
  2726.  
  2727. A:    Just use sprintf.  (You'll have to allocate space for the result
  2728.     somewhere anyway; see questions 3.1 and 3.2.  Don't worry that
  2729.     sprintf may be overkill, potentially wasting run time or code
  2730.     space; it works well in practice.)
  2731.  
  2732.     References: K&R I Sec. 3.6 p. 60; K&R II Sec. 3.6 p. 64.
  2733.  
  2734. 12.5:    How can I get the current date or time of day in a C program?
  2735.  
  2736. A:    Just use the time, ctime, and/or localtime functions.  (These
  2737.     routines have been around for years, and are in the ANSI
  2738.     standard.)  Here is a simple example:
  2739.  
  2740.         #include <stdio.h>
  2741.         #include <time.h>
  2742.  
  2743.         main()
  2744.         {
  2745.             time_t now = time((time_t *)NULL);
  2746.             printf("It's %.24s.\n", ctime(&now));
  2747.             return 0;
  2748.         }
  2749.  
  2750.     References: ANSI Sec. 4.12 .
  2751.  
  2752. 12.6:    I know that the library routine localtime will convert a time_t
  2753.     into a broken-down struct tm, and that ctime will convert a
  2754.     time_t to a printable string.  How can I perform the inverse
  2755.     operations of converting a struct tm or a string into a time_t?
  2756.  
  2757. A:    ANSI C specifies a library routine, mktime, which converts a
  2758.     struct tm to a time_t.  Several public-domain versions of this
  2759.     routine are available in case your compiler does not support it
  2760.     yet.
  2761.  
  2762.     Converting a string to a time_t is harder, because of the wide
  2763.     variety of date and time formats which should be parsed.  Some
  2764.     systems provide a strptime function; another popular routine is
  2765.     partime (widely distributed with the RCS package), but these are
  2766.     less likely to become standardized.
  2767.  
  2768.     References: K&R II Sec. B10 p. 256; H&S Sec. 20.4 p. 361; ANSI
  2769.     Sec. 4.12.2.3 .
  2770.  
  2771. 12.7:    How can I add n days to a date?  How can I find the difference
  2772.     between two dates?
  2773.  
  2774. A:    The ANSI/ISO Standard C mktime and difftime functions provide
  2775.     some support for both problems.  mktime() accepts non-normalized
  2776.     dates, so it is straightforward to take a filled-in struct tm,
  2777.     add or subtract from the tm_mday field, and call mktime() to
  2778.     normalize the year, month, and day fields (and convert to a
  2779.     time_t value).  difftime() computes the difference, in seconds,
  2780.     between two time_t values; mktime() can be used to compute
  2781.     time_t values for two dates to be subtracted.  (Note, however,
  2782.     that these solutions only work for dates in the range which can
  2783.     be represented as time_t's, and that not all days are 86400
  2784.     seconds long.)  See also questions 12.6 and 17.28.
  2785.  
  2786.     References: K&R II Sec. B10 p. 256; H&S Secs. 20.4, 20.5
  2787.     pp. 361-362; ANSI Secs. 4.12.2.2, 4.12.2.3 .
  2788.  
  2789. 12.8:    I need a random number generator.
  2790.  
  2791. A:    The standard C library has one: rand().  The implementation on
  2792.     your system may not be perfect, but writing a better one isn't
  2793.     necessarily easy, either.
  2794.  
  2795.     References: ANSI Sec. 4.10.2.1 p. 154; Knuth Vol. 2 Chap. 3
  2796.     pp. 1-177.
  2797.  
  2798. 12.9:    How can I get random integers in a certain range?
  2799.  
  2800. A:    The obvious way,
  2801.  
  2802.         rand() % N
  2803.  
  2804.     (where N is of course the range) is poor, because the low-order
  2805.     bits of many random number generators are distressingly non-
  2806.     random.  (See question 12.11.)  A better method is something
  2807.     like
  2808.  
  2809.         (int)((double)rand() / ((double)RAND_MAX + 1) * N)
  2810.  
  2811.     If you're worried about using floating point, you could try
  2812.  
  2813.         rand() / (RAND_MAX / N + 1)
  2814.  
  2815.     Both methods obviously require knowing RAND_MAX (which ANSI
  2816.     defines in <stdlib.h>), and assume that N is much less than
  2817.     RAND_MAX.
  2818.  
  2819. 12.10:    Each time I run my program, I get the same sequence of numbers
  2820.     back from rand().
  2821.  
  2822. A:    You can call srand() to seed the pseudo-random number generator
  2823.     with a more random initial value.  Popular seed values are the
  2824.     time of day, or the elapsed time before the user presses a key
  2825. rd to determine portably; see
  2826.     question 16.10).
  2827.  
  2828.     References: ANSI Sec. 4.10.2.2 p. 154.
  2829.  
  2830. 12.11:    I need a random true/false value, so I'm taking rand() % 2, but
  2831.     it's just alternating 0, 1, 0, 1, 0...
  2832.  
  2833. A:    Poor pseudorandom number generators (such as the ones
  2834.     unfortunately supplied with some systems) are not very random in
  2835.     the low-order bits.  Try using the higher-order bits.  See
  2836.     question 12.9.
  2837.  
  2838. 12.12:    I'm trying to port this        A:  Those routines are variously
  2839.     old program.  Why do I            obsolete; you should
  2840.     get "undefined external"        instead:
  2841.     errors for:
  2842.  
  2843.     index?                    use strchr.
  2844.     rindex?                    use strrchr.
  2845.     bcopy?                    use memmove, after
  2846.                         interchanging the first and
  2847.                         second arguments (see also
  2848.                         question 5.15).
  2849.     bcmp?                    use memcmp.
  2850.     bzero?                    use memset, with a second
  2851.                         argument of 0.
  2852.  
  2853. 12.13:    I keep getting errors due to library routines being undefined,
  2854.     but I'm #including all the right header files.
  2855.  
  2856. A:    In some cases (especially if the routines are nonstandard) you
  2857.     may have to explicitly ask for the correct libraries to be
  2858.     searched when you link the program.  See also question 15.2.
  2859.  
  2860. 12.14:    I'm still getting errors due to library routines being
  2861.     undefined, even though I'm using -l to request the libraries
  2862.     while linking.
  2863.  
  2864. A:    Many linkers make one pass over the list of object files and
  2865.     libraries you specify, and extract from libraries only those
  2866.     modules which satisfy references which have so far come up as
  2867.     undefined.  Therefore, the order in which libraries are listed
  2868.     with respect to object files (and each other) is significant;
  2869.     usually, you want to search the libraries last.  (For example,
  2870.     under Unix, put any -l switches towards the end of the command
  2871.     line.)
  2872.  
  2873. 12.15:    I need some code to do regular expression matching.
  2874.  
  2875. A:    Look for the regexp library (supplied with many Unix systems),
  2876.     or get Henry Spencer's regexp package from cs.toronto.edu in
  2877.     pub/regexp.shar.Z (see also question 17.12).
  2878.  
  2879. 12.16:    How can I split up a command line into whitespace-separated
  2880.     arguments, like main's argc and argv?
  2881.  
  2882. A:    Most systems have a routine called strtok, although it can be
  2883.     tricky to use and it may not do everything you want it to (e.g.,
  2884.     quoting).
  2885.  
  2886.     References: ANSI Sec. 4.11.5.8; K&R II Sec. B3 p. 250; H&S
  2887.     Sec. 15.7; PCS p. 178.
  2888.  
  2889.  
  2890. Section 13. Lint
  2891.  
  2892. 13.1:    I just typed in this program, and it's acting strangely.  Can
  2893.     you see anything wrong with it?
  2894.  
  2895. A:    Try running lint first (perhaps with the -a, -c, -h, -p and/or
  2896.     other options).  Many C compilers are really only half-
  2897.     compilers, electing not to diagnose numerous source code
  2898.     difficulties which would not actively preclude code generation.
  2899.  
  2900. 13.2:    How can I shut off the "warning: possible pointer alignment
  2901.     problem" message lint gives me for each call to malloc?
  2902.  
  2903. A:    The problem is that traditional versions of lint do not know,
  2904.     and cannot be told, that malloc "returns a pointer to space
  2905.     suitably aligned for storage of any type of object."  It is
  2906.     possible to provide a pseudoimplementation of malloc, using a
  2907.     #define inside of #ifdef lint, which effectively shuts this
  2908.     warning off, but a simpleminded #definition will also suppress
  2909.     meaningful messages about truly incorrect invocations.  It may
  2910.     be easier simply to ignore the message, perhaps in an automated
  2911.     way with grep -v.
  2912.  
  2913. 13.3:    Where can I get an ANSI-compatible lint?
  2914.  
  2915. A:    A product called FlexeLint is available (in "shrouded source
  2916.     form," for compilation on 'most any system) from
  2917.  
  2918.         Gimpel Software
  2919.         3207 Hogarth Lane
  2920.         Collegeville, PA  19426  USA
  2921.         (+1) 215 584 4261
  2922.  
  2923.     The System V release 4 lint is ANSI-compatible, and is available
  2924.     separately (bundled with other C tools) from UNIX Support Labs
  2925.     or from System V resellers.
  2926.  
  2927.     In the absence of lint, many modern compilers attempt to
  2928.     diagnose almost as many problems as a good lint does.
  2929.  
  2930. Section 14. Style
  2931.  
  2932. 14.1:    Here's a neat trick:
  2933.  
  2934.         if(!strcmp(s1, s2))
  2935.  
  2936.     Is this good style?
  2937.  
  2938. A:    It is not particularly good style, although it is a popular
  2939.     idiom.  The test succeeds if the two strings are equal, but its
  2940.     form suggests that it tests for inequality.
  2941.  
  2942.     Another solution is to use a macro:
  2943.  
  2944.         #define Streq(s1, s2) (strcmp((s1), (s2)) == 0)
  2945.  
  2946.     Opinions on code style, like those on religion, can be debated
  2947.     endlessly.  Though good style is a worthy goal, and can usually
  2948.     be recognized, it cannot be codified.
  2949.  
  2950. 14.2:    What's the best style for code layout in C?
  2951.  
  2952. A:    K&R, while providing the example most often copied, also supply
  2953.     a good excuse for avoiding it:
  2954.  
  2955.         The position of braces is less important,
  2956.         although people hold passionate beliefs.  We
  2957.         have chosen one of several popular styles.  Pick
  2958.         a style that suits you, then use it
  2959.         consistently.
  2960.  
  2961.     It is more important that the layout chosen be consistent (with
  2962.     itself, and with nearby or common code) than that it be
  2963.     "perfect."  If your coding environment (i.e. local custom or
  2964.     company policy) does not suggest a style, and you don't feel
  2965.     like inventing your own, just copy K&R.  (The tradeoffs between
  2966.     various indenting and brace placement options can be
  2967.     exhaustively and minutely examined, but don't warrant repetition
  2968.     here.  See also the Indian Hill Style Guide.)
  2969.  
  2970.     The elusive quality of "good style" involves much more than mere
  2971.     code layout details; don't spend time on formatting to the
  2972.     exclusion of more substantive code quality issues.
  2973.  
  2974.     References: K&R Sec. 1.2 p. 10.
  2975.  
  2976. 14.3:    Where can I get the "Indian Hill Style Guide" and other coding
  2977.     standards?
  2978.  
  2979. A:    Various documents are available for anonymous ftp from:
  2980.  
  2981.         Site:            File or directory:
  2982.  
  2983.         cs.washington.edu    ~ftp/pub/cstyle.tar.Z
  2984.         (128.95.1.4)        (the updated Indian Hill guide)
  2985.  
  2986.         cs.toronto.edu        doc/programming
  2987.  
  2988.         ftp.cs.umd.edu          pub/style-guide
  2989.  
  2990.  
  2991. Section 15. Floating Point
  2992.  
  2993. 15.1:    My floating-point calculations are acting strangely and giving
  2994.     me different answers on different machines.
  2995.  
  2996. A:    First, make sure that you have #included <math.h>, and correctly
  2997.     declared other functions returning double.
  2998.  
  2999.     If the problem isn't that simple, recall that most digital
  3000.     computers use floating-point formats which provide a close but
  3001.     by no means exact simulation of real number arithmetic.
  3002.     Underflow, cumulative precision loss, and other anomalies are
  3003.     often troublesome.
  3004.  
  3005.     Don't assume that floating-point results will be exact, and
  3006.     especially don't assume that floating-point values can be
  3007.     compared for equality.  (Don't throw haphazard "fuzz factors"
  3008.     in, either.)
  3009.  
  3010.     These problems are no worse for C than they are for any other
  3011.     computer language.  Floating-point semantics are usually defined
  3012.     as "however the processor does them;" otherwise a compiler for a
  3013.     machine without the "right" model would have to do prohibitively
  3014.     expensive emulations.
  3015.  
  3016.     This article cannot begin to list the pitfalls associated with,
  3017.     and workarounds appropriate for, floating-point work.  A good
  3018.     programming text should cover the basics.
  3019.  
  3020.     References: EoPS Sec. 6 pp. 115-8.
  3021.  
  3022. 15.2:    I'm trying to do some simple trig, and I am #including <math.h>,
  3023.     but I keep getting "undefined: _sin" compilation errors.
  3024.  
  3025. A:    Make sure you're linking with the correct math library.  For
  3026.     instance, under Unix, you usually need to use the -lm option,
  3027.     and at the _end_ of the command line, when compiling/linking.
  3028.     See also question 12.14.
  3029.  
  3030. 15.3:    Why doesn't C have an exponentiation operator?
  3031.  
  3032. A:    Because few processors have an exponentiation instruction.
  3033.     Instead, you can #include <math.h> and use the pow() function,
  3034.     although explicit multiplication is often better for small
  3035.     positive integral exponents.
  3036.  
  3037.     References: ANSI Sec. 4.5.5.1 .
  3038.  
  3039. 15.4:    How do I round numbers?
  3040.  
  3041. A:    The simplest and most straightforward way is with code like
  3042.  
  3043.         (int)(x + 0.5)
  3044.  
  3045.     This won't work properly for negative numbers, though.
  3046.  
  3047. 15.5:    How do I test for IEEE NaN and other special values?
  3048.  
  3049. A:    Many systems with high-quality IEEE floating-point
  3050.     implementations provide facilities (e.g. an isnan() macro) to
  3051.     deal with these values cleanly, and the Numerical C Extensions
  3052.     Group (NCEG) is working to formally standardize such facilities.
  3053.     A crude but usually effective test for NaN is exemplified by
  3054.  
  3055. x) ((x) != (x))
  3056.  
  3057.     although non-IEEE-aware compilers may optimize the test away.
  3058.  
  3059. 15.6:    I'm having trouble with a Turbo C program which crashes and says
  3060.     something like "floating point formats not linked."
  3061.  
  3062. A:    Some compilers for small machines, including Turbo C (and
  3063.     Ritchie's original PDP-11 compiler), leave out floating point
  3064.     support if it looks like it will not be needed.  In particular,
  3065.     the non-floating-point versions of printf and scanf save space
  3066.     by not including code to handle %e, %f, and %g.  It happens that
  3067.     Turbo C's heuristics for determining whether the program uses
  3068.     floating point are insufficient, and the programmer must
  3069.     sometimes insert an extra, explicit call to a floating-point
  3070.     library routine to force loading of floating-point support.
  3071.  
  3072.  
  3073. Section 16. System Dependencies
  3074.  
  3075. 16.1:    How can I read a single character from the keyboard without
  3076.     waiting for a newline?
  3077.  
  3078. A:    Contrary to popular belief and many people's wishes, this is not
  3079.     a C-related question.  (Nor are closely-related questions
  3080.     concerning the echo of keyboard input.)  The delivery of
  3081.     characters from a "keyboard" to a C program is a function of the
  3082.     operating system in use, and has not been standardized by the C
  3083.     language.  Some versions of curses have a cbreak() function
  3084.     which does what you want.  If you're specifically trying to read
  3085.     a short password without echo, you might try getpass().  Under
  3086.     Unix, use ioctl to play with the terminal driver modes (CBREAK
  3087.     or RAW under "classic" versions; ICANON, c_cc[VMIN] and
  3088.     c_cc[VTIME] under System V or Posix systems).  Under MS-DOS, use
  3089.     getch().  Under VMS, try the Screen Management (SMG$) routines,
  3090.     or curses, or issue low-level $QIO's with the IO$_READVBLK (and
  3091.     perhaps IO$M_NOECHO) function codes to ask for one character at
  3092.     a time.  Under other operating systems, you're on your own.
  3093.     Beware that some operating systems make this sort of thing
  3094.     impossible, because character collection into input lines is
  3095.     done by peripheral processors not under direct control of the
  3096.     CPU running your program.
  3097.  
  3098.     Operating system specific questions are not appropriate for
  3099.     comp.lang.c .  Many common questions are answered in
  3100.     frequently-asked questions postings in such groups as
  3101.     comp.unix.questions and comp.os.msdos.programmer .  Note that
  3102.     the answers are often not unique even across different variants
  3103.     of a system; bear in mind when answering system-specific
  3104.     questions that the answer that applies to your system may not
  3105.     apply to everyone else's.
  3106.  
  3107.     References: PCS Sec. 10 pp. 128-9, Sec. 10.1 pp. 130-1.
  3108.  
  3109. 16.2:    How can I find out if there are characters available for reading
  3110.     (and if so, how many)?  Alternatively, how can I do a read that
  3111.     will not block if there are no characters available?
  3112.  
  3113. A:    These, too, are entirely operating-system-specific.  Some
  3114.     versions of curses have a nodelay() function.  Depending on your
  3115.     system, you may also be able to use "nonblocking I/O", or a
  3116.     system call named "select", or the FIONREAD ioctl, or kbhit(),
  3117.     or rdchk(), or the O_NDELAY option to open() or fcntl().
  3118.  
  3119. 16.3:    How can I clear the screen?  How can I print things in inverse
  3120.     video?
  3121.  
  3122. A:    Such things depend on the terminal type (or display) you're
  3123.     using.  You will have to use a library such as termcap or
  3124.     curses, or some system-specific routines, to perform these
  3125.     functions.
  3126.  
  3127. 16.4:    How do I read the mouse?
  3128.  
  3129. A:    Consult your system documentation, or ask on an appropriate
  3130.     system-specific newsgroup (but check its FAQ list first).  Mouse
  3131.     handling is completely different under the X window system, MS-
  3132.     DOS, Macintosh, and probably every other system.
  3133.  
  3134. 16.5:    How can my program discover the complete pathname to the
  3135.     executable file from which it was invoked?
  3136.  
  3137. A:    argv[0] may contain all or part of the pathname, or it may
  3138.     contain nothing.  You may be able to duplicate the command
  3139.     language interpreter's search path logic to locate the
  3140.     executable if the name in argv[0] is present but incomplete.
  3141.     However, there is no guaranteed or portable solution.
  3142.  
  3143. 16.6:    How can a process change an environment variable in its caller?
  3144.  
  3145. A:    In general, it cannot.  Different operating systems implement
  3146.     name/value functionality similar to the Unix environment in
  3147.     different ways.  Whether the "environment" can be usefully
  3148.     altered by a running program, and if so, how, is system-
  3149.     dependent.
  3150.  
  3151.     Under Unix, a process can modify its own environment (some
  3152.     systems provide setenv() and/or putenv() functions to do this),
  3153.     and the modified environment is usually passed on to any child
  3154.     processes, but it is _not_ propagated back to the parent
  3155.     process.
  3156.  
  3157. 16.7:    How can I check whether a file exists?  I want to query the user
  3158.     before overwriting existing files.
  3159.  
  3160. A:    On Unix-like systems, you can try the access() routine, although
  3161.     it's got a few problems.  (It isn't atomic with respect to the
  3162.     following action, and can have anomalies if used in setuid
  3163.     programs.)  Another option (perhaps preferable) is to call
  3164.     stat() on the file.  Otherwise, the only guaranteed and portable
  3165.     way to test for file existence is to try opening the file (which
  3166.     doesn't help if you're trying to avoid overwriting an existing
  3167.     file, unless you've got something like the BSD Unix O_EXCL open
  3168.     option available).
  3169.  
  3170. 16.8:    How can I find out the size of a file, prior to reading it in?
  3171.  
  3172. A:    If the "size of a file" is the number of characters you'll be
  3173.     able to read from it in C, it is in general impossible to
  3174.     determine this number in advance.  Under Unix, the stat call
  3175.     will give you an exact answer, and several other systems supply
  3176.     a Unix-like stat which will give an approximate answer.  You can
  3177.     fseek to the end and then use ftell, but this usage is
  3178.     nonportable (it gives you an accurate answer only under Unix,
  3179.     and otherwise a quasi-accurate answer only for ANSI C "binary"
  3180.     files).  Some systems provide routines called filesize or
  3181.     filelength.
  3182.  
  3183.     Are you sure you have to determine the file's size in advance?
  3184.     Since the most accurate way of determining the size of a file as
  3185.     a C program will see it is to open the file and read it, perhaps
  3186.     you can rearrange the code to learn the size as it reads.
  3187.  
  3188. 16.9:    How can a file be shortened in-place without completely clearing
  3189.     or rewriting it?
  3190.  
  3191. A:    BSD systems provide ftruncate(), several others supply chsize(),
  3192.     and a few may provide a (possibly undocumented) fcntl option
  3193.     F_FREESP.  Under MS-DOS, you can sometimes use write(fd, "", 0).
  3194.     However, there is no truly portable solution.
  3195.  
  3196. 16.10:    How can I implement a delay, or time a user's response, with
  3197.     sub-second resolution?
  3198.  
  3199. A:    Unfortunately, there is no portable way.  V7 Unix, and derived
  3200.     systems, provided a fairly useful ftime() routine with
  3201.     resolution up to a millisecond, but it has disappeared from
  3202.     System V and Posix.  Other routines you might look for on your
  3203.     system include nap(), setitimer(), msleep(), usleep(), clock(),
  3204.     and gettimeofday().  The select() and poll() calls (if
  3205.     available) can be pressed into service to implement simple
  3206.     delays.  On MS-DOS machines, it is possible to reprogram the
  3207.     system timer and timer interrupts.
  3208.  
  3209. 16.11:    How can I read in an object file and jump to routines in it?
  3210.  
  3211. A:    You want a dynamic linker and/or loader.  It is possible to
  3212.     malloc some space and read in object files, but you have to know
  3213.     an awful lot about object file formats, relocation, etc.  Under
  3214.     BSD Unix, you could use system() and ld -A to do the linking for
  3215.     you.  Many (most?) versions of SunOS and System V have the -ldl
  3216.     library which allows object files to be dynamically loaded.
  3217.     There is also a GNU package called "dld".  See also question
  3218.     7.6.
  3219.  
  3220. 16.12:    How can I invoke an operating system command from within a
  3221.     program?
  3222.  
  3223. A:    Use system().
  3224.  
  3225.     References: K&R II Sec. B6 p. 253; ANSI Sec. 4.10.4.5; H&S
  3226.     Sec. 21.2; PCS Sec. 11 p. 179;
  3227.  
  3228. 16.13:    How can I invoke an operating system command and trap its
  3229.     output?
  3230.  
  3231. A:    Unix and some other systems provide a popen() routine, which
  3232.     sets up a stdio stream on a pipe connected to the process
  3233.     running a command, so that the output can be read (or the input
  3234.     supplied).  Alternately, invoke the command simply (see question
  3235. to a file, then
  3236.     open and read that file.
  3237.  
  3238.     References: PCS Sec. 11 p. 169 .
  3239.  
  3240. 16.14:    How can I read a directory in a C program?
  3241.  
  3242. A:    See if you can use the opendir() and readdir() routines, which
  3243.     are available on most Unix systems.  Implementations also exist
  3244.     for MS-DOS, VMS, and other systems.  (MS-DOS also has FINDFIRST
  3245.     and FINDNEXT routines which do essentially the same thing.)
  3246.  
  3247. 16.15:    How can I do serial ("comm") port I/O?
  3248.  
  3249. A:    It's system-dependent.  Under Unix, you typically open, read,
  3250.     and write a device in /dev, and use the facilities of the
  3251.     terminal driver to adjust its characteristics.  Under MS-DOS,
  3252.     you can either use some primitive BIOS interrupts, or (if you
  3253.     require decent performance) one of any number of interrupt-
  3254.     driven serial I/O packages.
  3255.  
  3256.  
  3257. Section 17. Miscellaneous
  3258.  
  3259. 17.1:    What can I safely assume about the initial values of variables
  3260.     which are not explicitly initialized?  If global variables start
  3261.     out as "zero," is that good enough for null pointers and
  3262.     floating-point zeroes?
  3263.  
  3264. A:    Variables with "static" duration (that is, those declared
  3265.     outside of functions, and those declared with the storage class
  3266.     static), are guaranteed initialized (just once, at program
  3267.     startup) to zero, as if the programmer had typed "= 0".
  3268.     Therefore, such variables are initialized to the null pointer
  3269.     (of the correct type; see also Section 1) if they are pointers,
  3270.     and to 0.0 if they are floating-point.
  3271.  
  3272.     Variables with "automatic" duration (i.e. local variables
  3273.     without the static storage class) start out containing garbage,
  3274.     unless they are explicitly initialized.  Nothing useful can be
  3275.     predicted about the garbage.
  3276.  
  3277.     Dynamically-allocated memory obtained with malloc and realloc is
  3278.     also likely to contain garbage, and must be initialized by the
  3279.     calling program, as appropriate.  Memory obtained with calloc
  3280.     contains all-bits-0, but this is not necessarily useful for
  3281.     pointer or floating-point values (see question 3.13, and section
  3282.     1).
  3283.  
  3284. 17.2:    This code, straight out of a book, isn't compiling:
  3285.  
  3286.         f()
  3287.         {
  3288.         char a[] = "Hello, world!";
  3289.         }
  3290.  
  3291. A:    Perhaps you have a pre-ANSI compiler, which doesn't allow
  3292.     initialization of "automatic aggregates" (i.e. non-static local
  3293.     arrays and structures).  As a workaround, you can make the array
  3294.     global or static, and initialize it with strcpy when f is
  3295.     called.  (You can always initialize local char * variables with
  3296.     string literals, but see question 17.20).  See also questions
  3297.     5.16 and 5.17.
  3298.  
  3299. 17.3:    How can I write data files which can be read on other machines
  3300.     with different word size, byte order, or floating point formats?
  3301.  
  3302. A:    The best solution is to use text files (usually ASCII), written
  3303.     with fprintf and read with fscanf or the like.  (Similar advice
  3304.     also applies to network protocols.)  Be skeptical of arguments
  3305.     which imply that text files are too big, or that reading and
  3306.     writing them is too slow.  Not only is their efficiency
  3307.     frequently acceptable in practice, but the advantages of being
  3308.     able to manipulate them with standard tools can be overwhelming.
  3309.  
  3310.     If you must use a binary format, you can improve portability,
  3311.     and perhaps take advantage of prewritten I/O libraries, by
  3312.     making use of standardized formats such as Sun's XDR (RFC 1014),
  3313.     OSI's ASN.1, CCITT's X.409, or ISO 8825 "Basic Encoding Rules."
  3314.     See also question 9.11.
  3315.  
  3316. 17.4:    How can I insert or delete a line (or record) in the middle of a
  3317.     file?
  3318.  
  3319. A:    Short of rewriting the file, you probably can't.  See also
  3320.     question 16.9.
  3321.  
  3322. 17.5:    How can I return several values from a function?
  3323.  
  3324. A:    Either pass pointers to locations which the function can fill
  3325.     in, or have the function return a structure containing the
  3326.     desired values, or (in a pinch) consider global variables.  See
  3327.     also questions 2.17, 3.4, and 9.2.
  3328.  
  3329. 17.6:    If I have a char * variable pointing to the name of a function
  3330.     as a string, how can I call that function?
  3331.  
  3332. A:    The most straightforward thing to do is maintain a
  3333.     correspondence table of names and function pointers:
  3334.  
  3335.         int function1(), function2();
  3336.  
  3337.         struct {char *name; int (*funcptr)(); } symtab[] =
  3338.             {
  3339.             "function1",    function1,
  3340.             "function2",    function2,
  3341.             };
  3342.  
  3343.     Then, just search the table for the name, and call through the
  3344.     associated function pointer.  See also questions 9.9 and 16.11.
  3345.  
  3346. 17.7:    I seem to be missing the system header file <sgtty.h>.  Can
  3347.     someone send me a copy?
  3348.  
  3349. A:    Standard headers exist in part so that definitions appropriate
  3350.     to your compiler, operating system, and processor can be
  3351.     supplied.  You cannot just pick up a copy of someone else's
  3352.     header file and expect it to work, unless that person is using
  3353.     exactly the same environment.  Ask your compiler vendor why the
  3354.     file was not provided (or to send a replacement copy).
  3355.  
  3356. 17.8:    How can I call FORTRAN (C++, BASIC, Pascal, Ada, LISP) functions
  3357.     from C?  (And vice versa?)
  3358.  
  3359. A:    The answer is entirely dependent on the machine and the specific
  3360.     calling sequences of the various compilers in use, and may not
  3361.     be possible at all.  Read your compiler documentation very
  3362.     carefully; sometimes there is a "mixed-language programming
  3363.     guide," although the techniques for passing arguments and
  3364.     ensuring correct run-time startup are often arcane.  More
  3365.     information may be found in FORT.gz by Glenn Geers, available
  3366.     via anonymous ftp from suphys.physics.su.oz.au in the src
  3367.     directory.
  3368.  
  3369.     cfortran.h, a C header file, simplifies C/FORTRAN interfacing on
  3370.     many popular machines.  It is available via anonymous ftp from
  3371.     zebra.desy.de (131.169.2.244).
  3372.  
  3373.     In C++, a "C" modifier in an external function declaration
  3374.     indicates that the function is to be called using C calling
  3375.     conventions.
  3376.  
  3377. 17.9:    Does anyone know of a program for converting Pascal or FORTRAN
  3378.     (or LISP, Ada, awk, "Old" C, ...) to C?
  3379.  
  3380. A:    Several public-domain programs are available:
  3381.  
  3382.     p2c    A Pascal to C converter written by Dave Gillespie,
  3383.         posted to comp.sources.unix in March, 1990 (Volume 21);
  3384.         also available by anonymous ftp from
  3385.         csvax.cs.caltech.edu, file pub/p2c-1.20.tar.Z .
  3386.  
  3387.     ptoc    Another Pascal to C converter, this one written in
  3388.         Pascal (comp.sources.unix, Volume 10, also patches in
  3389.         Volume 13?).
  3390.  
  3391.     f2c    A Fortran to C converter jointly developed by people
  3392.         from Bell Labs, Bellcore, and Carnegie Mellon.  To find
  3393.         out more about f2c, send the mail message "send index
  3394.         from f2c" to netlib@research.att.com or research!netlib.
  3395.         (It is also available via anonymous ftp on
  3396.         netlib.att.com, in directory netlib/f2c.)
  3397.  
  3398.     This FAQ list's maintainer also has available a list of other
  3399.     commercial translation products, and some for more obscure
  3400.     languages.
  3401.  
  3402.     See also question 5.3.
  3403.  
  3404. 17.10:    Is C++ a superset of C?  Can I use a C++ compiler to compile C
  3405.     code?
  3406.  
  3407. A:    C++ was derived from C, and is largely based on it, but there
  3408.     are some legal C constructs which are not legal C++.  (Many C
  3409.     programs will nevertheless compile correctly in a C++
  3410.     environment.)
  3411.  
  3412. 17.11:    I need:                A:  Look for programs (see also
  3413.                         question 17.12) named:
  3414.  
  3415.     a C cross-reference            cflow, calls, cscope
  3416.     generator
  3417.  
  3418.     a C beautifier/pretty-            cb, indent
  3419.     printer
  3420.  
  3421. 17.12:    Where can I get copies of all these public-domain programs?
  3422.  
  3423. A:    If you have access to Usenet, see the regular postings in the
  3424.     comp.sources.unix and comp.sources.misc newsgroups, which
  3425.     describe, in some detail, the archiving policies and how to
  3426.     retrieve copies.  The usual approach is to use anonymous ftp
  3427.     and/or uucp from a central, public-spirited site, such as uunet
  3428.     (ftp.uu.net, 192.48.96.9).  However, this article cannot track
  3429.     or list all of the available archive sites and how to access
  3430.     them.
  3431.  
  3432.     Ajay Shah maintains an index of free numerical software; it is
  3433.     posted periodically, and available where this FAQ list is
  3434.     archived (see question 17.33).  The comp.archives newsgroup
  3435.     contains numerous announcements of anonymous ftp availability of
  3436.     various items.  The "archie" mailserver can tell you which
  3437.     anonymous ftp sites have which packages; send the mail message
  3438.     "help" to archie@quiche.cs.mcgill.ca for information.  Finally,
  3439.     the newsgroup comp.sources.wanted is generally a more
  3440.     appropriate place to post queries for source availability, but
  3441.     chec, "How to find sources," before posting
  3442.     there.
  3443.  
  3444. 17.13:    When will the next International Obfuscated C Code Contest
  3445.     (IOCCC) be held?  How can I get a copy of the current and
  3446.     previous winning entries?
  3447.  
  3448. A:    The contest typically runs from early March through mid-May.  To
  3449.     obtain a current copy of the rules and guidelines, send e-mail
  3450.     with the Subject: line "send rules" to:
  3451.  
  3452.         {apple,pyramid,sun,uunet}!hoptoad!judges  or
  3453.         judges@toad.com
  3454.  
  3455.     (Note that these are _not_ the addresses for submitting
  3456.     entries.)
  3457.  
  3458.     Contest winners are first announced at the Summer Usenix
  3459.     Conference in mid-June, and posted to the net sometime in July-
  3460.     August.  Winning entries from previous years (to 1984) are
  3461.     archived at uunet (see question 17.12) under the directory
  3462.     ~/pub/ioccc.
  3463.  
  3464.     As a last resort, previous winners may be obtained by sending
  3465.     e-mail to the above address, using the Subject: "send YEAR
  3466.     winners", where YEAR is a single four-digit year, a year range,
  3467.     or "all".
  3468.  
  3469. 17.14:    Why don't C comments nest?  How am I supposed to comment out
  3470.     code containing comments?  Are comments legal inside quoted
  3471.     strings?
  3472.  
  3473. A:    Nested comments would cause more harm than good, mostly because
  3474.     of the possibility of accidentally leaving comments unclosed by
  3475.     including the characters "/*" within them.  For this reason, it
  3476.     is usually better to "comment out" large sections of code, which
  3477.     might contain comments, with #ifdef or #if 0 (but see question
  3478.     5.11).
  3479.  
  3480.     The character sequences /* and */ are not special within
  3481.     double-quoted strings, and do not therefore introduce comments,
  3482.     because a program (particularly one which is generating C code
  3483.     as output) might want to print them.
  3484.  
  3485.     References: ANSI Appendix E p. 198, Rationale Sec. 3.1.9 p. 33.
  3486.  
  3487. 17.15:    How can I get the ASCII value corresponding to a character, or
  3488.     vice versa?
  3489.  
  3490. A:    In C, characters are represented by small integers corresponding
  3491.     to their values (in the machine's character set) so you don't
  3492.     need a conversion routine: if you have the character, you have
  3493.     its value.
  3494.  
  3495. 17.16:    How can I implement sets and/or arrays of bits?
  3496.  
  3497. A:    Use arrays of char or int, with a few macros to access the right
  3498.     bit at the right index (try using 8 for CHAR_BIT if you don't
  3499.     have <limits.h>):
  3500.  
  3501.         #include <limits.h>        /* for CHAR_BIT */
  3502.  
  3503.         #define BITMASK(bit) (1 << ((bit) % CHAR_BIT))
  3504.         #define BITSLOT(bit) ((bit) / CHAR_BIT)
  3505.         #define BITSET(ary, bit) ((ary)[BITSLOT(bit)] |= BITMASK(bit))
  3506.         #define BITTEST(ary, bit) ((ary)[BITSLOT(bit)] & BITMASK(bit))
  3507.  
  3508. 17.17:    What is the most efficient way to count the number of bits which
  3509.     are set in a value?
  3510.  
  3511. A:    This and many other similar bit-twiddling problems can often be
  3512.     sped up and streamlined using lookup tables (but see the next
  3513.     question).
  3514.  
  3515. 17.18:    How can I make this code more efficient?
  3516.  
  3517. A:    Efficiency, though a favorite comp.lang.c topic, is not
  3518.     important nearly as often as people tend to think it is.  Most
  3519.     of the code in most programs is not time-critical.  When code is
  3520.     not time-critical, it is far more important that it be written
  3521.     clearly and portably than that it be written maximally
  3522.     efficiently.  (Remember that computers are very, very fast, and
  3523.     that even "inefficient" code can run without apparent delay.)
  3524.  
  3525.     It is notoriously difficult to predict what the "hot spots" in a
  3526.     program will be.  When efficiency is a concern, it is important
  3527.     to use profiling software to determine which parts of the
  3528.     program deserve attention.  Often, actual computation time is
  3529.     swamped by peripheral tasks such as I/O and memory allocation,
  3530.     which can be sped up by using buffering and caching techniques.
  3531.  
  3532.     For the small fraction of code that is time-critical, it is
  3533.     vital to pick a good algorithm; it is less important to
  3534.     "microoptimize" the coding details.  Many of the "efficient
  3535.     coding tricks" which are frequently suggested (e.g. substituting
  3536.     shift operators for multiplication by powers of two) are
  3537.     performed automatically by even simpleminded compilers.
  3538.     Heavyhanded "optimization" attempts can make code so bulky that
  3539.     performance is degraded.
  3540.  
  3541.     For more discussion of efficiency tradeoffs, as well as good
  3542.     advice on how to increase efficiency when it is important, see
  3543.     chapter 7 of Kernighan and Plauger's The Elements of Programming
  3544.     Style, and Jon Bentley's Writing Efficient Programs.
  3545.  
  3546. 17.19:    Are pointers really faster than arrays?  How much do function
  3547.     calls slow things down?  Is ++i faster than i = i + 1?
  3548.  
  3549. A:    Precise answers to these and many similar questions depend of
  3550.     course on the processor and compiler in use.  If you simply must
  3551.     know, you'll have to time test programs carefully.  (Often the
  3552.     differences are so slight that hundreds of thousands of
  3553.     iterations are required even to see them.  Check the compiler's
  3554.     assembly language output, if available, to see if two purported
  3555.     alternatives aren't compiled identically.)
  3556.  
  3557.     It is "usually" faster to march through large arrays with
  3558.     pointers rather than array subscripts, but for some processors
  3559.     the reverse is true.
  3560.  
  3561.     Function calls, though obviously incrementally slower than in-
  3562.     line code, contribute so much to modularity and code clarity
  3563.     that there is rarely good reason to avoid them.
  3564.  
  3565.     Before rearranging expressions such as i = i + 1, remember that
  3566.     you are dealing with a C compiler, not a keystroke-programmable
  3567.     calculator.  Any decent compiler will generate identical code
  3568.     for ++i, i += 1, and i = i + 1.  The reasons for using ++i or
  3569.     i += 1 over i = i + 1 have to do with style, not efficiency.
  3570.     (See also question 4.7.)
  3571.  
  3572. 17.20:    Why does this code:
  3573.  
  3574.         char *p = "Hello, world!";
  3575.         p[0] = tolower(p[0]);
  3576.  
  3577.     crash?
  3578.  
  3579. A:    String literals are not necessarily modifiable, except (in
  3580.     effect) when they are used as array initializers.  Try
  3581.  
  3582.         char a[] = "Hello, world!";
  3583.  
  3584.     (For compiling old code, some compilers have a switch
  3585.     controlling whether strings are writable or not.)  See also
  3586.     questions 2.1, 2.2, 2.8, and 17.2.
  3587.  
  3588.     References: ANSI Sec. 3.1.4 .
  3589.  
  3590. 17.21:    This program crashes before it even runs!  (When single-stepping
  3591.     with a debugger, it dies before the first statement in main.)
  3592.  
  3593. A:    You probably have one or more very large (kilobyte or more)
  3594.     local arrays.  Many systems have fixed-size stacks, and those
  3595.     which perform dynamic stack allocation automatically (e.g. Unix)
  3596.     can be confused when the stack tries to grow by a huge chunk all
  3597.     at once.
  3598.  
  3599.     It is often better to declare large arrays with static duration
  3600.     (unless of course you need a fresh set with each recursive
  3601.     call).
  3602.  
  3603.     (See also question 9.4.)
  3604.  
  3605. 17.22:    What do "Segmentation violation" and "Bus error" mean?
  3606.  
  3607. A:    These generally mean that your program tried to access memory it
  3608.     shouldn't have, invariably as a result of improper pointer use,
  3609.     often involving uninitialized or improperly allocated pointers
  3610.     (see questions 3.1 and 3.2), or malloc (see question 17.23), or
  3611.     perhaps scanf (see question 11.3).
  3612.  
  3613. 17.23:    My program is crashing, apparently somewhere down inside malloc,
  3614.     but I can't see anything wrong with it.
  3615.  
  3616. A:    It is unfortunately very easy to corrupt malloc's internal data
  3617.     structures, and the resulting problems can be hard to track
  3618.     down.  The most common source of problems is writing more to a
  3619.     malloc'ed region than it was allocated to hold; a particularly
  3620.     common bug is to malloc(strlen(s)) instead of strlen(s) + 1.
  3621.     Other problems involve freeing pointers not obtained from
  3622.     malloc, or trying to realloc a null pointer (see question 3.12).
  3623.  
  3624.     A number of debugging packages exist to help track down malloc
  3625.     problems; one popular one is Conor P. Cahill's "dbmalloc,"
  3626.     posted to comp.sources.misc in September of 1992.  Others are
  3627.     "leak," available in volume 27 of the comp.sources.unix
  3628.     archives; JMalloc.c and JMalloc.h in Fidonet's C_ECHO Snippets
  3629.     (or ask archie; see question 17.12); and MEMDEBUG from
  3630.     ftp.crpht.lu in pub/sources/memdebug .  See also question 17.12.
  3631.  
  3632. 17.24:    Does anyone have a C compiler test suite I can use?
  3633.  
  3634. A:    Plum Hall (formerly in Cardiff, NJ; now in Hawaii) sells one.
  3635.     The FSF's GNU C (gcc) distribution includes a c-torture-
  3636.     test.tar.Z which checks a number of common problems with
  3637.     compilers.  Kahan's paranoia test, found in netlib/paranoia on
  3638.     strenuously tests a C implementation's floating
  3639.     point capabilities.
  3640.  
  3641. 17.25:    Where can I get a YACC grammar for C?
  3642.  
  3643. A:    The definitive grammar is of course the one in the ANSI
  3644.     standard.  Another grammar, by Jim Roskind, is in pub/*grammar*
  3645.     at ics.uci.edu .  A fleshed-out, working instance of the ANSI
  3646.     grammar (due to Jeff Lee) is on uunet (see question 17.12) in
  3647.     usenet/net.sources/ansi.c.grammar.Z (including a companion
  3648.     lexer).  The FSF's GNU C compiler contains a grammar, as does
  3649.     the appendix to K&R II.
  3650.  
  3651.     References: ANSI Sec. A.2 .
  3652.  
  3653. 17.26:    I need code to parse and evaluate expressions.
  3654.  
  3655. A:    Two available packages are "defunc," posted to comp.source.misc
  3656.     in December, 1993 (V41 i32,33), to alt.sources in January, 1994,
  3657.     and available from sunsite.unc.edu in
  3658.     pub/packages/development/libraries/defunc-1.3.tar.Z; and
  3659.     "parse," at lamont.ldgo.columbia.edu.
  3660.  
  3661. 17.27:    I need a sort of an "approximate" strcmp routine, for comparing
  3662.     two strings for close, but not necessarily exact, equality.
  3663.  
  3664. A:    The traditional routine for doing this sort of thing involves
  3665.     the "soundex" algorithm, which maps similar-sounding words to
  3666.     the same numeric codes.  Soundex is described in the Searching
  3667.     and Sorting volume of Donald Knuth's classic _The Art of
  3668.     Computer Programming_.
  3669.  
  3670. 17.28:    How can I find the day of the week given the date?
  3671.  
  3672. A:    Use mktime (see questions 12.6 and 12.7), or Zeller's
  3673.     congruence, or see the sci.math FAQ list, or try this code
  3674.     posted by Tomohiko Sakamoto:
  3675.  
  3676.         dayofweek(y, m, d)    /* 0 = Sunday */
  3677.         int y, m, d;        /* 1 <= m <= 12,  y > 1752 or so */
  3678.         {
  3679.             static int t[] = {0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4};
  3680.             y -= m < 3;
  3681.             return (y + y/4 - y/100 + y/400 + t[m-1] + d) % 7;
  3682.         }
  3683.  
  3684. 17.29:    Will 2000 be a leap year?  Is (year % 4 == 0) an accurate test
  3685.     for leap years?
  3686.  
  3687. A:    Yes and no, respectively.  The full expression for the Gregorian
  3688.     calendar is
  3689.  
  3690.         year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)
  3691.  
  3692.     See a good astronomical almanac or other reference for details.
  3693.  
  3694. 17.30:    How do you pronounce "char"?
  3695.  
  3696. A:    You can pronounce the C keyword "char" in at least three ways:
  3697.     like the English words "char," "care," or "car;" the choice is
  3698.     arbitrary.
  3699.  
  3700. 17.31:    What's a good book for learning C?
  3701.  
  3702. A:    Mitch Wright maintains an annotated bibliography of C and Unix
  3703.     books; it is available for anonymous ftp from ftp.rahul.net in
  3704.     directory pub/mitch/YABL.
  3705.  
  3706.     This FAQ list's editor maintains a collection of previous
  3707.     answers to this question, which is available upon request.
  3708.  
  3709. 17.32:    Are there any C tutorials on the net?
  3710.  
  3711. A:    There are at least two of them:
  3712.  
  3713.     "Notes for C programmers," by Christopher Sawtell,
  3714.     available from:
  3715.     svr-ftp.eng.cam.ac.uk:misc/sawtell_C.shar
  3716.     garbo.uwasa.fi:/pc/c-lang/c-lesson.zip
  3717.     paris7.jussieu.fr:/contributions/docs
  3718.  
  3719.     Tim Love's "C for Programmers,"
  3720.     available from svr-ftp.eng.cam.ac.uk in the misc directory.
  3721.  
  3722. 17.33:    Where can I get extra copies of this list?  What about back
  3723.     issues?
  3724.  
  3725. A:    For now, just pull it off the net; it is normally posted to
  3726.     comp.lang.c on the first of each month, with an Expires: line
  3727.     which should keep it around all month.  An abridged version is
  3728.     also available (and posted), as is a list of changes
  3729.     accompanying each significantly updated version.  These lists
  3730.     can also be found in the newsgroups comp.answers and
  3731.     news.answers .  Several sites archive news.answers postings and
  3732.     other FAQ lists, including this one; two sites are rtfm.mit.edu
  3733.     (directories pub/usenet/news.answers/C-faq/ and
  3734.     pub/usenet/comp.lang.c/ ) and ftp.uu.net (directory
  3735.     usenet/news.answers/C-faq/ ).  The archie server should help you
  3736.     find others; query it for "prog C-faq".  See the meta-FAQ list
  3737.     in news.answers for more information; see also question 17.12.
  3738.  
  3739.     This list is an evolving document of questions which have been
  3740.     Frequent since before the Great Renaming, not just a collection
  3741.     of this month's interesting questions.  Older copies are
  3742.     obsolete and don't contain much, except the occasional typo,
  3743.     that the current list doesn't.
  3744.  
  3745.  
  3746. Bibliography
  3747.  
  3748. ANSI    American National Standard for Information Systems --
  3749.     Programming Language -- C, ANSI X3.159-1989 (see question 5.2).
  3750.  
  3751. JLB    Jon Louis Bentley, Writing Efficient Programs, Prentice-Hall,
  3752.     1982, ISBN 0-13-970244-X.
  3753.  
  3754. H&S    Samuel P. Harbison and Guy L. Steele, C: A Reference Manual,
  3755.     Second Edition, Prentice-Hall, 1987, ISBN 0-13-109802-0.  (A
  3756.     third edition has recently been released.)
  3757.  
  3758. PCS    Mark R. Horton, Portable C Software, Prentice Hall, 1990,
  3759.     ISBN 0-13-868050-7.
  3760.  
  3761. EoPS    Brian W. Kernighan and P.J. Plauger, The Elements of Programming
  3762.     Style, Second Edition, McGraw-Hill, 1978, ISBN 0-07-034207-5.
  3763.  
  3764. K&R I    Brian W. Kernighan and Dennis M. Ritchie, The C Programming
  3765.     Language, Prentice-Hall, 1978, ISBN 0-13-110163-3.
  3766.  
  3767. K&R II    Brian W. Kernighan and Dennis M. Ritchie, The C Programming
  3768.     Language, Second Edition, Prentice Hall, 1988, ISBN 0-13-
  3769.     110362-8, 0-13-110370-9.
  3770.  
  3771. Knuth    Donald E. Knuth, The Art of Computer Programming, (3 vols.),
  3772.     Addison-Wesley, 1981.
  3773.  
  3774. CT&P    Andrew Koenig, C Traps and Pitfalls, Addison-Wesley, 1989,
  3775.     ISBN 0-201-17928-8.
  3776.  
  3777.     P.J. Plauger, The Standard C Library, Prentice Hall, 1992,
  3778.     ISBN 0-13-131509-9.
  3779.  
  3780.     Harry Rabinowitz and Chaim Schaap, Portable C, Prentice-Hall,
  3781.     1990, ISBN 0-13-685967-4.
  3782.  
  3783. There is a more extensive bibliography in the revised Indian Hill style
  3784. guide (see question 14.3).  See also question 17.31.
  3785.  
  3786.  
  3787. Acknowledgements
  3788.  
  3789. Thanks to Jamshid Afshar, Sudheer Apte, Randall Atkinson, Dan Bernstein,
  3790. Vincent Broman, Stan Brown, Joe Buehler, Gordon Burditt, Burkhard Burow,
  3791. Conor P. Cahill, D'Arcy J.M. Cain, Christopher Calabrese, Ian Cargill,
  3792. Paul Carter, Billy Chambless, Raymond Chen, Jonathan Coxhead, Lee
  3793. Crawford, Steve Dahmer, Andrew Daviel, James Davies, Jutta Degener, Norm
  3794. Diamond, Jeff Dunlop, Ray Dunn, Stephen M. Dunn, Michael J. Eager, Dave
  3795. Eisen, Bjorn Engsig, Chris Flatters, Rod Flores, Alexander Forst, Jeff
  3796. Francis, Dave Gillespie, Samuel Goldstein, Alasdair Grant, Ron
  3797. Guilmette, Doug Gwyn, Tony Hansen, Joe Harrington, Guy Harris, Elliotte
  3798. Rusty Harold, Jos Horsmeier, Blair Houghton, Ke Jin, Kirk Johnson, Larry
  3799. Jones, Kin-ichi Kitano, Peter Klausler, Andrew Koenig, Tom Koenig, Ajoy
  3800. Krishnan T, Markus Kuhn, John Lauro, Felix Lee, Mike Lee, Timothy J.
  3801. Lee, Tony Lee, Don Libes, Christopher Lott, Tim Love, Tim McDaniel,
  3802. Stuart MacMartin, John R. MacMillan, Bob Makowski, Evan Manning, Barry
  3803. Margolin, George Matas, Brad Mears, Bill Mitchell, Mark Moraes, Darren
  3804. Morby, Ken Nakata, Landon Curt Noll, David O'Brien, Richard A. O'Keefe,
  3805. Hans Olsson, Philip (lijnzaad@embl-heidelberg.de), Andrew Phillips,
  3806. Christopher Phillips, Francois Pinard, Dan Pop, Kevin D. Quitt, Pat
  3807. Rankin, J. M. Rosenstock, Erkki Ruohtula, Tomohiko Sakamoto, Rich Salz,
  3808. Chip Salzenberg, Paul Sand, DaviD W. Sanderson, Christopher Sawtell,
  3809. Paul Schlyter, Doug Schmidt, Rene Schmit, Russell Schulz, Patricia
  3810. Shanahan, Peter da Silva, Joshua Simons, Henry Spencer, David Spuler,
  3811. Melanie Summit, Erik Talvola, Clarke Thatcher, Wayne Throop, Chris
  3812. Torek, Andrew Tucker, Goran Uddeborg, Rodrigo Vanegas, Jim Van Zandt,
  3813. Wietse Venema, Ed Vielmetti, Larry Virden, Chris Volpe, Mark Warren,
  3814. Larry Weiss, Freek Wiedijk, Lars Wirzenius, Dave Wolverton, Mitch
  3815. Wright, Conway Yee, and Zhuo Zang, who have contributed, directly or
  3816. indirectly, to this article.  Special thanks to Karl Heuer, and
  3817. particularly to Mark Brader, who (to borrow a line from Steve Johnson)
  3818. have goaded me beyond my inclination, and occasionally beyond my
  3819. endurance, in relentless pursuit of a better FAQ list.
  3820.  
  3821.                     Steve Summit
  3822.                     scs@eskimo.com
  3823.  
  3824. This article is Copyright 1988, 1990-1994 by Steve Summit.
  3825. It may be freely redistributed so long as the author's name, and this
  3826. notice, are retained.
  3827. The C code in this article (vstrcat(), error(), etc.) is public domain
  3828. and may be used without restriction.
  3829.