home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / faqs / comp / answers / C-faq / abridged < prev    next >
Internet Message Format  |  1997-10-02  |  58KB

  1. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!cam-news-hub1.bbnplanet.com!news.bbnplanet.com!news.idt.net!news-peer-east.sprintlink.net!news-peer.sprintlink.net!news-sea-19.sprintlink.net!news-in-west.sprintlink.net!news.sprintlink.net!Sprint!204.122.16.44!news.eskimo.com!scs
  2. From: scs@eskimo.com (Steve Summit)
  3. Newsgroups: comp.lang.c,comp.lang.c.moderated,comp.answers,news.answers
  4. Subject: comp.lang.c Answers (Abridged) to Frequently Asked Questions (FAQ)
  5. Followup-To: poster
  6. Date: 1 Oct 1997 10:10:31 GMT
  7. Organization: only when absolutely necessary
  8. Lines: 1856
  9. Approved: news-answers-request@MIT.Edu
  10. Expires: 18 Nov 1997 00:00:00 GMT
  11. Message-ID: <1997Oct01.0310.scs.0004@eskimo.com>
  12. Reply-To: scs@eskimo.com
  13. NNTP-Posting-Host: eskimo.com
  14. Summary: Short answers for those who don't care to read the longer explanations
  15. X-Last-Modified: September 6, 1996
  16. X-Archive-Name: C-faq/abridged
  17. X-Version: 3.4
  18. X-URL: http://www.eskimo.com/~scs/C-faq/top.html
  19. X-PGP-Signature: Version: 2.6.2
  20.     iQCSAwUBMjB90N6sm4I1rmP1AQEsLgPlELLaXjV2TVDJgdK5mrIPc5rJDj4p9PkQ
  21.     kpUSMUBNhCsca/I57RJRLFS3IsD6QTgAHNv8NFx8vryOkjzNvRm2Q+HKHFFkk/Zj
  22.     ohqz7KT6LwWHKEYCUd35XHnMOfaPsZL7f9bbR3JyV8C2FC9S8QftiF8EUGl+xtaG
  23.     dN9tDXU=
  24.     =zRsy
  25. Originator: scs@eskimo.com
  26. Xref: senator-bedfellow.mit.edu comp.lang.c:269994 comp.lang.c.moderated:7312 comp.answers:28303 news.answers:113542
  27.  
  28. Archive-name: C-faq/abridged
  29. Comp-lang-c-archive-name: C-FAQ-list.abridged
  30. URL: http://www.eskimo.com/~scs/C-faq/top.html
  31.  
  32. [Last modified September 6, 1996 by scs.]
  33.  
  34. This article is Copyright 1990-1996 by Steve Summit.  Content from the
  35. book _C Programming FAQs: Frequently Asked Questions_ is made available
  36. here by permission of the author and the publisher as a service to the
  37. community.  It is intended to complement the use of the published text
  38. and is protected by international copyright laws.  The content is made
  39. available here and may be accessed freely for personal use but may not
  40. be republished without permission.
  41.  
  42. This article contains minimal answers to the comp.lang.c frequently-
  43. asked questions list.  More detailed explanations and references can be
  44. found in the long version (see question 20.40 for availability, or ftp
  45. to rtfm.mit.edu, or send the mail message "help" to mail-server@rtfm.mit.edu),
  46. and in the web version at http://www.eskimo.com/~scs/C-faq/top.html ,
  47. and in the book _C Programming FAQs: Frequently Asked Questions_
  48. (Addison-Wesley, 1996, ISBN 0-201-84519-9).
  49.  
  50.  
  51. Section 1. Declarations and Initializations
  52.  
  53. 1.1:    How do you decide which integer type to use?
  54.  
  55. A:    If you might need large values (tens of thousands), use long.
  56.     Otherwise, if space is very important, use short.  Otherwise,
  57.     use int.
  58.  
  59. 1.4:    What should the 64-bit type on new, 64-bit machines be?
  60.  
  61. A:    There are arguments in favor of long int and long long int,
  62.     among other options.
  63.  
  64. 1.7:    What's the best way to declare and define global variables?
  65.  
  66. A:    The best arrangement is to place each definition in some
  67.     relevant .c file, with an external declaration in a header file.
  68.  
  69. 1.11:    What does extern mean in a function declaration?
  70.  
  71. A:    Nothing, really.
  72.  
  73. 1.12:    What's the auto keyword good for?
  74.  
  75. A:    Nothing.
  76.  
  77. 1.14:    I can't seem to define a linked list node which contains a
  78.     pointer to itself.
  79.  
  80. A:    Structures in C can certainly contain pointers to themselves;
  81.     the discussion and example in section 6.5 of K&R make this
  82.     clear.  Problems arise if an attempt is made to define (and use)
  83.     a typedef in the midst of such a declaration; avoid this.
  84.  
  85. 1.21:    How do I declare an array of N pointers to functions returning
  86.     pointers to functions returning pointers to characters?
  87.  
  88. A:    char *(*(*a[N])())();
  89.     Using a chain of typedefs, or the cdecl program, makes these
  90.     declarations easier.
  91.  
  92. 1.22:    How can I declare a function that returns a pointer to a
  93.     function of its own type?
  94.  
  95. A:    You can't quite do it directly.  Use a cast, or wrap a struct
  96.     around the pointer and return that.
  97.  
  98. 1.25:    My compiler is complaining about an invalid redeclaration of a
  99.     function, but I only define it once.
  100.  
  101. A:    Calling an undeclared function declares it implicitly as
  102.     returning int.
  103.  
  104. 1.30:    What can I safely assume about the initial values of variables
  105.     which are not explicitly initialized?
  106.  
  107. A:    Uninitialized variables with "static" duration start out as 0,
  108.     as if the programmer had initialized them.  Variables with
  109.     "automatic" duration, and dynamically-allocated memory, start
  110.     out containing garbage (with the exception of calloc).
  111.  
  112. 1.31:    Why can't I initialize a local array with a string?
  113.  
  114. A:    Perhaps you have a pre-ANSI compiler.
  115.  
  116. 1.31a:    What's wrong with "char *p = malloc(10);" ?
  117.  
  118. A:    Function calls are not allowed in initializers for global or
  119.     static variables.
  120.  
  121. 1.32:    What is the difference between char a[] = "string"; and
  122.     char *p = "string"; ?
  123.  
  124. A:    The first declares an initialized and modifiable array; the
  125.     second declares a pointer initialized to a not-necessarily-
  126.     modifiable constant string.
  127.  
  128. 1.34:    How do I initialize a pointer to a function?
  129.  
  130. A:    Use something like "extern int func(); int (*fp)() = func;" .
  131.  
  132.  
  133. Section 2. Structures, Unions, and Enumerations
  134.  
  135. 2.1:    What's the difference between struct x1 { ... }; and
  136.     typedef struct { ... } x2; ?
  137.  
  138. A:    The first structure is named by a tag, the second by a typedef
  139.     name.
  140.  
  141. 2.2:    Why doesn't "struct x { ... }; x thestruct;" work?
  142.  
  143. A:    C is not C++.
  144.  
  145. 2.3:    Can a structure contain a pointer to itself?
  146.  
  147. A:    See question 1.14.
  148.  
  149. 2.4:    What's the best way of implementing opaque (abstract) data types
  150.     in C?
  151.  
  152. A:    One good way is to use structure pointers which point to
  153.     structure types which are not publicly defined.
  154.  
  155. 2.6:    I came across some code that declared a structure with the last
  156.     member an array of one element, and then did some tricky
  157.     allocation to make it act like the array had several elements.
  158.     Is this legal or portable?
  159.  
  160. A:    An official interpretation has deemed that it is not strictly
  161.     conforming with the C Standard.
  162.  
  163. 2.7:    I heard that structures could be assigned to variables and
  164.     passed to and from functions, but K&R1 says not.
  165.  
  166. A:    These operations are supported by all modern compilers.
  167.  
  168. 2.8:    Why can't you compare structures?
  169.  
  170. A:    There is no single, good way for a compiler to implement
  171.     structure comparison which is consistent with C's low-level
  172.     flavor.
  173.  
  174. 2.9:    How are structure passing and returning implemented?
  175.  
  176. A:    If you really need to know, see the unabridged list.
  177.  
  178. 2.10:    Can I pass constant values to functions which accept structure
  179.     arguments?
  180.  
  181. A:    No.  C has no way of generating anonymous structure values.
  182.  
  183. 2.11:    How can I read/write structures from/to data files?
  184.  
  185. A:    It is relatively straightforward to use fread and fwrite.
  186.  
  187. 2.12:    How can I turn off structure padding?
  188.  
  189. A:    There is no standard method.
  190.  
  191. 2.13:    Why does sizeof report a larger size than I expect for a
  192.     structure type?
  193.  
  194. A:    The alignment of arrays of structures must be preserved.
  195.  
  196. 2.14:    How can I determine the byte offset of a field within a
  197.     structure?
  198.  
  199. A:    ANSI C defines the offsetof() macro, which should be used if
  200.     available.
  201.  
  202. 2.15:    How can I access structure fields by name at run time?
  203.  
  204. A:    Build a table of names and offsets, using the offsetof() macro.
  205.  
  206. 2.18:    I have a program which works correctly, but dumps core after it
  207.     finishes.  Why?
  208.  
  209. A:    Check to see if a structure type declaration just before main()
  210.     is missing its trailing semicolon, causing main() to be declared
  211.     as returning a structure.  See also questions 10.9 and 16.4.
  212.  
  213. 2.20:    Can I initialize unions?
  214.  
  215. A:    ANSI Standard C allows an initializer for the first-named
  216.     member.
  217.  
  218. 2.22:    What is the difference between an enumeration and a set of
  219.     preprocessor #defines?
  220.  
  221. A:    At the present time, there is little difference.  The C Standard
  222.     states that enumerations are compatible with integral types.
  223.  
  224. 2.24:    Is there an easy way to print enumeration values symbolically?
  225.  
  226. A:    No.
  227.  
  228.  
  229. Section 3. Expressions
  230.  
  231. 3.1:    Why doesn't the code "a[i] = i++;" work?
  232.  
  233. A:    The variable i is both referenced and modified in the same
  234.     expression.
  235.  
  236. 3.2:    Under my compiler, the code "int i = 7;
  237.     printf("%d\n", i++ * i++);" prints 49.  Regardless of the order
  238.     of evaluation, shouldn't it print 56?
  239.  
  240. A:    The operations implied by the postincrement and postdecrement
  241.     operators ++ and -- are performed at some time after the
  242.     operand's former values are yielded and before the end of the
  243.     expression, but not necessarily immediately after, or before
  244.     other parts of the expression are evaluated.
  245.  
  246. 3.3:    How could the code "int i = 3; i = i++;" ever give 7?
  247.  
  248. A:    Undefined behavior means *anything* can happen.
  249.  
  250. 3.4:    Don't precedence and parentheses dictate order of evaluation?
  251.  
  252. A:    Operator precedence and explicit parentheses impose only a
  253.     partial ordering on the evaluation of an expression, which does
  254.     not generally include the order of side effects.
  255.  
  256. 3.5:    But what about the && and || operators?
  257.  
  258. A:    There is a special exception for those operators: left-to-right
  259.     evaluation is guaranteed.
  260.  
  261. 3.8:    What's a "sequence point"?
  262.  
  263. A:    The point (at the end of a full expression, or at the ||, &&,
  264.     ?:, or comma operators, or just before a function call) at which
  265.     all side effects are guaranteed to be complete.
  266.  
  267. 3.9:    So given a[i] = i++; we don't know which cell of a[] gets
  268.     written to, but i does get incremented by one, right?
  269.  
  270. A:    *No.*  Once an expression or program becomes undefined, *all*
  271.     aspects of it become undefined.
  272.  
  273. 3.12:    If I'm not using the value of the expression, should I use i++
  274.     or ++i to increment a variable?
  275.  
  276. A:    Since the two forms differ only in the value yielded, they are
  277.     entirely equivalent when only their side effect is needed.
  278.  
  279. 3.14:    Why doesn't the code "int a = 1000, b = 1000;
  280.     long int c = a * b;" work?
  281.  
  282. A:    You must manually cast one of the operands to (long).
  283.  
  284. 3.16:    Can I use ?: on the left-hand side of an assignment expression?
  285.  
  286. A:    No.
  287.  
  288.  
  289. Section 4. Pointers
  290.  
  291. 4.2:    What's wrong with "char *p; *p = malloc(10);"?
  292.  
  293. A:    The pointer you declared is p, not *p.
  294.  
  295. 4.3:    Does *p++ increment p, or what it points to?
  296.  
  297. A:    *p++ increments p.  To increment the value pointed to by p, use
  298.     (*p)++ .
  299.  
  300. 4.5:    I want to use a char * pointer to step over some ints.  Why
  301.     doesn't "((int *)p)++;" work?
  302.  
  303. A:    In C, a cast operator is a conversion operator, and by
  304.     definition it yields an rvalue, which cannot be assigned to, or
  305.     incremented with ++.
  306.  
  307. 4.8:    I have a function which accepts, and is supposed to initialize,
  308.     a pointer, but the pointer in the caller remains unchanged.
  309.  
  310. A:    The called function probably altered only the passed copy of the
  311.     pointer.
  312.  
  313. 4.9:    Can I use a void ** pointer to pass a generic pointer to a
  314.     function by reference?
  315.  
  316. A:    Not portably.
  317.  
  318. 4.10:    I have a function which accepts a pointer to an int.  How can I
  319.     pass a constant like 5 to it?
  320.  
  321. A:    You will have to declare a temporary variable.
  322.  
  323. 4.11:    Does C even have "pass by reference"?
  324.  
  325. A:    Not really, though it can be simulated.
  326.  
  327. 4.12:    I've seen different methods used for calling functions via
  328.     pointers.
  329.  
  330. A:    The extra parentheses and explicit * are now officially
  331.     optional, although some older implementations require them.
  332.  
  333.  
  334. Section 5. Null Pointers
  335.  
  336. 5.1:    What is this infamous null pointer, anyway?
  337.  
  338. A:    For each pointer type, there is a special value -- the "null
  339.     pointer" -- which is distinguishable from all other pointer
  340.     values and which is not the address of any object or function.
  341.  
  342. 5.2:    How do I get a null pointer in my programs?
  343.  
  344. A:    A constant 0 in a pointer context is converted into a null
  345.     pointer at compile time.  A "pointer context" is an
  346.     initialization, assignment, or comparison with one side a
  347.     variable or expression of pointer type, and (in ANSI standard C)
  348.     a function argument which has a prototype in scope declaring a
  349.     certain parameter as being of pointer type.  In other contexts
  350.     (function arguments without prototypes, or in the variable part
  351.     of variadic function calls) a constant 0 with an appropriate
  352.     explicit cast is required.
  353.  
  354. 5.3:    Is the abbreviated pointer comparison "if(p)" to test for non-
  355.     null pointers valid?
  356.  
  357. A:    Yes.  The construction "if(p)" works, regardless of the internal
  358.     representation of null pointers, because the compiler
  359.     essentially rewrites it as "if(p != 0)" and goes on to convert 0
  360.     into the correct null pointer.
  361.  
  362. 5.4:    What is NULL and how is it #defined?
  363.  
  364. A:    NULL is simply a preprocessor macro, #defined as 0 (or
  365.     ((void *)0)), which is used (as a stylistic convention, in
  366.     preference to unadorned 0's) to generate null pointers.
  367.  
  368. 5.5:    How should NULL be defined on a machine which uses a nonzero bit
  369.     pattern as the internal representation of a null pointer?
  370.  
  371. A:    The same as on any other machine: as 0 (or ((void *)0)).  (The
  372.     compiler makes the translation, upon seeing a 0, not the
  373.     preprocessor.)
  374.  
  375. 5.6:    If NULL were defined as "((char *)0)," wouldn't that make
  376.     function calls which pass an uncast NULL work?
  377.  
  378. A:    Not in general.  The problem is that there are machines which
  379.     use different internal representations for pointers to different
  380.     types of data.  A cast is still required to tell the compiler
  381.     which kind of null pointer is required, since it may be
  382.     different from (char *)0.
  383.  
  384. 5.9:    If NULL and 0 are equivalent as null pointer constants, which
  385.     should I use?
  386.  
  387. A:    Either; the distinction is entirely stylistic.
  388.  
  389. 5.10:    But wouldn't it be better to use NULL, in case the value of NULL
  390.     changes?
  391.  
  392. A:    No.  NULL is a constant zero, so a constant zero is equally
  393.     sufficient.
  394.  
  395. 5.12:    I use the preprocessor macro "#define Nullptr(type) (type *)0"
  396.     to help me build null pointers of the correct type.
  397.  
  398. A:    This trick, though valid, does not buy much.
  399.  
  400. 5.13:    This is strange.  NULL is guaranteed to be 0, but the null
  401.     pointer is not?
  402.  
  403. A:    A "null pointer" is a language concept whose particular internal
  404.     value does not matter.  A null pointer is requested in source
  405.     code with the character "0".  "NULL" is a preprocessor macro,
  406.     which is always #defined as 0 (or ((void *)0)).
  407.  
  408. 5.14:    Why is there so much confusion surrounding null pointers?
  409.  
  410. A:    The fact that null pointers are represented both in source code,
  411.     and internally to most machines, as zero invites unwarranted
  412.     assumptions.  The use of a preprocessor macro (NULL) may seem to
  413.     suggest that the value could change some day, or on some weird
  414.     machine.
  415.  
  416. 5.15:    I'm confused.  I just can't understand all this null pointer
  417.     stuff.
  418.  
  419. A:    A simple rule is, "Always use `0' or `NULL' for null pointers,
  420.     and always cast them when they are used as arguments in function
  421.     calls."
  422.  
  423. 5.16:    Given all the confusion surrounding null pointers, wouldn't it
  424.     be easier simply to require them to be represented internally by
  425.     zeroes?
  426.  
  427. A:    Such a requirement would accomplish little.
  428.  
  429. 5.17:    Seriously, have any actual machines really used nonzero null
  430.     pointers?
  431.  
  432. A:    Machines manufactured by Prime, Honeywell-Bull, and CDC, as well
  433.     as Symbolics Lisp Machines, have done so.
  434.  
  435. 5.20:    What does a run-time "null pointer assignment" error mean?
  436.  
  437. A:    It means that you've written, via a null pointer, to an invalid
  438.     location.  (See also question 16.8.)
  439.  
  440.  
  441. Section 6. Arrays and Pointers
  442.  
  443. 6.1:    I had the definition char a[6] in one source file, and in
  444.     another I declared extern char *a.  Why didn't it work?
  445.  
  446. A:    The declaration extern char *a simply does not match the actual
  447.     definition.  Use extern char a[].
  448.  
  449. 6.2:    But I heard that char a[] was identical to char *a.
  450.  
  451. A:    Not at all.  Arrays are not pointers.  A reference like x[3]
  452.     generates different code depending on whether x is an array or a
  453.     pointer.
  454.  
  455. 6.3:    So what is meant by the "equivalence of pointers and arrays" in
  456.     C?
  457.  
  458. A:    An lvalue of type array-of-T which appears in an expression
  459.     decays into a pointer to its first element; the type of the
  460.     resultant pointer is pointer-to-T.  So for an array a and
  461.     pointer p, you can say "p = a;" and then p[3] and a[3] will
  462.     access the same element.
  463.  
  464. 6.4:    Why are array and pointer declarations interchangeable as
  465.     function formal parameters?
  466.  
  467. A:    It's supposed to be a convenience.
  468.  
  469. 6.7:    How can an array be an lvalue, if you can't assign to it?
  470.  
  471. A:    An array is not a "modifiable lvalue."
  472.  
  473. 6.8:    What is the real difference between arrays and pointers?
  474.  
  475. A:    Arrays automatically allocate space which is fixed in size and
  476.     location; pointers are dynamic.
  477.  
  478. 6.9:    Someone explained to me that arrays were really just constant
  479.     pointers.
  480.  
  481. A:    An array name is "constant" in that it cannot be assigned to,
  482.     but an array is *not* a pointer.
  483.  
  484. 6.11:    I came across some "joke" code containing the "expression"
  485.     5["abcdef"] .  How can this be legal C?
  486.  
  487. A:    Yes, array subscripting is commutative in C.  The array
  488.     subscripting operation a[e] is defined as being identical to
  489.     *((a)+(e)).
  490.  
  491. 6.12:    What's the difference between array and &array?
  492.  
  493. A:    The type.
  494.  
  495. 6.13:    How do I declare a pointer to an array?
  496.  
  497. A:    Usually, you don't want to.  Consider using a pointer to one of
  498.     the array's elements instead.
  499.  
  500. 6.14:    How can I set an array's size at run time?
  501.  
  502. A:    It's straightforward to use malloc() and a pointer.
  503.  
  504. 6.15:    How can I declare local arrays of a size matching a passed-in
  505.     array?
  506.  
  507. A:    You can't; array dimensions must be compile-time constants.
  508.  
  509. 6.16:    How can I dynamically allocate a multidimensional array?
  510.  
  511. A:    It is usually best to allocate an array of pointers, and then
  512.     initialize each pointer to a dynamically-allocated "row."  See
  513.     the full list for code samples.
  514.  
  515. 6.17:    Can I simulate a non-0-based array with a pointer?
  516.  
  517. A:    Not if the pointer points outside of the block of memory it is
  518.     intended to access.
  519.  
  520. 6.18:    My compiler complained when I passed a two-dimensional array to
  521.     a function expecting a pointer to a pointer.
  522.  
  523. A:    The rule by which arrays decay into pointers is not applied
  524.     recursively.  An array of arrays (i.e. a two-dimensional array
  525.     in C) decays into a pointer to an array, not a pointer to a
  526.     pointer.
  527.  
  528. 6.19:    How do I write functions which accept two-dimensional arrays
  529.     when the "width" is not known at compile time?
  530.  
  531. A:    It's not particularly easy.
  532.  
  533. 6.20:    How can I use statically- and dynamically-allocated
  534.     multidimensional arrays interchangeably when passing them to
  535.     functions?
  536.  
  537. A:    There is no single perfect method, but see the full list for
  538.     some ideas.
  539.  
  540. 6.21:    Why doesn't sizeof properly report the size of an array which is
  541.     a parameter to a function?
  542.  
  543. A:    The sizeof operator reports the size of the pointer parameter
  544.     which the function actually receives.
  545.  
  546.  
  547. Section 7. Memory Allocation
  548.  
  549. 7.1:    Why doesn't the code "char *answer; gets(answer);" work?
  550.  
  551. A:    The pointer variable answer() has not been set to point to any
  552.     valid storage.  The simplest way to correct this fragment is to
  553.     use a local array, instead of a pointer.
  554.  
  555. 7.2:    I can't get strcat() to work.  I tried "char *s3 =
  556.     strcat(s1, s2);" but I got strange results.
  557.  
  558. A:    Again, the main problem here is that space for the concatenated
  559.     result is not properly allocated.
  560.  
  561. 7.3:    But the man page for strcat() says that it takes two char *'s as
  562.     arguments.  How am I supposed to know to allocate things?
  563.  
  564. A:    In general, when using pointers you *always* have to consider
  565.     memory allocation, if only to make sure that the compiler is
  566.     doing it for you.
  567.  
  568. 7.5:    I have a function that is supposed to return a string, but when
  569.     it returns to its caller, the returned string is garbage.
  570.  
  571. A:    Make sure that the pointed-to memory is properly (i.e. not
  572.     locally) allocated.
  573.  
  574. 7.6:    Why am I getting "warning: assignment of pointer from integer
  575.     lacks a cast" for calls to malloc()?
  576.  
  577. A:    Have you #included <stdlib.h>?
  578.  
  579. 7.7:    Why does some code carefully cast the values returned by malloc
  580.     to the pointer type being allocated?
  581.  
  582. A:    Before ANSI/ISO C, these casts were required to silence certain
  583.     warnings.
  584.  
  585. 7.8:    Why does so much code leave out the multiplication by
  586.     sizeof(char) when allocating strings?
  587.  
  588. A:    Because sizeof(char) is, by definition, exactly 1.
  589.  
  590. 7.14:    I've heard that some operating systems don't actually allocate
  591.     malloc'ed memory until the program tries to use it.  Is this
  592.     legal?
  593.  
  594. A:    It's hard to say.
  595.  
  596. 7.16:    I'm allocating a large array for some numeric work, but malloc()
  597.     is acting strangely.
  598.  
  599. A:    Make sure the number you're trying to pass to malloc() isn't
  600.     bigger than a size_t can hold.
  601.  
  602. 7.17:    I've got 8 meg of memory in my PC.  Why can I only seem to
  603.     malloc() 640K or so?
  604.  
  605. A:    Under the segmented architecture of PC compatibles, it can be
  606.     difficult to use more than 640K with any degree of transparency.
  607.     See also question 19.23.
  608.  
  609. 7.19:    My program is crashing, apparently somewhere down inside malloc.
  610.  
  611. A:    Make sure you aren't using more memory than you malloc'ed,
  612.     especially for strings (which need strlen(str) + 1 bytes).
  613.  
  614. 7.20:    You can't use dynamically-allocated memory after you free it,
  615.     can you?
  616.  
  617. A:    No.  Some early documentation implied otherwise, but the claim
  618.     is no longer valid.
  619.  
  620. 7.21:    Why isn't a pointer null after calling free()?
  621.  
  622. A:    C's pass-by-value semantics mean that called functions can never
  623.     permanently change the values of their arguments.
  624.  
  625. 7.22:    When I call malloc() to allocate memory for a local pointer, do
  626.     I have to explicitly free() it?
  627.  
  628. A:    Yes.
  629.  
  630. 7.23:    When I free a dynamically-allocated structure containing
  631.     pointers, do I also have to free each subsidiary pointer?
  632.  
  633. A:    Yes.
  634.  
  635. 7.24:    Must I free allocated memory before the program exits?
  636.  
  637. A:    You shouldn't have to.
  638.  
  639. 7.25:    Why doesn't my program's memory usage go down when I free
  640.     memory?
  641.  
  642. A:    Most implementations of malloc/free do not return freed memory
  643.     to the operating system.
  644.  
  645. 7.26:    How does free() know how many bytes to free?
  646.  
  647. A:    The malloc/free implementation remembers the size of each block
  648.     allocated and returned.
  649.  
  650. 7.27:    So can I query the malloc package to find out how big an
  651.     allocated block is?
  652.  
  653. A:    Not portably.
  654.  
  655. 7.30:    Is it legal to pass a null pointer as the first argument to
  656.     realloc()?
  657.  
  658. A:    ANSI C sanctions this usage, although several earlier
  659.     implementations do not support it.
  660.  
  661. 7.31:    What's the difference between calloc() and malloc()?
  662.  
  663. A:    calloc() takes two arguments, and initializes the allocated
  664.     memory to all-bits-0.
  665.  
  666. 7.32:    What is alloca() and why is its use discouraged?
  667.  
  668. A:    alloca() allocates memory which is automatically freed when the
  669.     function which called alloca() returns.  alloca() cannot be
  670.     written portably, is difficult to implement on machines without
  671.     a stack, and fails under certain conditions if implemented
  672.     simply.
  673.  
  674.  
  675. Section 8. Characters and Strings
  676.  
  677. 8.1:    Why doesn't "strcat(string, '!');" work?
  678.  
  679. A:    strcat() concatenates *strings*, not characters.
  680.  
  681. 8.2:    Why won't the test if(string == "value") correctly compare
  682.     string against the value?
  683.  
  684. A:    It's comparing pointers.  To compare two strings, use strcmp().
  685.  
  686. 8.3:    Why can't I assign strings to character arrays?
  687.  
  688. A:    Strings are arrays, and you can't assign arrays directly.  Use
  689.     strcpy() instead.
  690.  
  691. 8.6:    How can I get the numeric (character set) value corresponding to
  692.     a character?
  693.  
  694. A:    In C, if you have the character, you have its value.
  695.  
  696. 8.9:    Why is sizeof('a') not 1?
  697.  
  698. A:    Character constants in C are of type int.
  699.  
  700.  
  701. Section 9. Boolean Expressions and Variables
  702.  
  703. 9.1:    What is the right type to use for Boolean values in C?
  704.  
  705. A:    There's no one right answer; see the full list for some
  706.     discussion.
  707.  
  708. 9.2:    What if a built-in logical or relational operator "returns"
  709.     something other than 1?
  710.  
  711. A:    When a Boolean value is generated by a built-in operator, it is
  712.     guaranteed to be 1 or 0.  (This is *not* true for some library
  713.     routines such as isalpha.)
  714.  
  715. 9.3:    Is if(p), where p is a pointer, valid?
  716.  
  717. A:    Yes.  See question 5.3.
  718.  
  719.  
  720. Section 10. C Preprocessor
  721.  
  722. 10.2:    I've got some cute preprocessor macros that let me write C code
  723.     that looks more like Pascal.  What do y'all think?
  724.  
  725. A:    Bleah.
  726.  
  727. 10.3:    How can I write a generic macro to swap two values?
  728.  
  729. A:    There is no good answer to this question.  The best all-around
  730.     solution is probably to forget about using a macro.
  731.  
  732. 10.4:    What's the best way to write a multi-statement macro?
  733.  
  734. A:    #define Func() do {stmt1; stmt2; ... } while(0)    /* (no trailing ;) */
  735.  
  736. 10.6:    What are .h files and what should I put in them?
  737.  
  738. A:    Header files (also called ".h files") should generally contain
  739.     common declarations and macro, structure, and typedef
  740.     definitions, but not variable or function definitions.
  741.  
  742. 10.7:    Is it acceptable for one header file to #include another?
  743.  
  744. A:    It's a question of style, and thus receives considerable debate.
  745.  
  746. 10.8:    Where are header ("#include") files searched for?
  747.  
  748. A:    The exact behavior is implementation-defined; see the full list
  749.     for some discussion.
  750.  
  751. 10.9:    I'm getting strange syntax errors on the very first declaration
  752.     in a file, but it looks fine.
  753.  
  754. A:    Perhaps there's a missing semicolon at the end of the last
  755.     declaration in the last header file you're #including.
  756.  
  757. 10.11:    Where can I get a copy of a missing header file?
  758.  
  759. A:    Contact your vendor, or see question 18.16 or the full list.
  760.  
  761. 10.12:    How can I construct preprocessor #if expressions which compare
  762.     strings?
  763.  
  764. A:    You can't do it directly; try #defining several manifest
  765.     constants and implementing conditionals on those.
  766.  
  767. 10.13:    Does the sizeof operator work in preprocessor #if directives?
  768.  
  769. A:    No.
  770.  
  771. 10.14:    Can I use an #ifdef in a #define line, to define something two
  772.     different ways?
  773.  
  774. A:    No.
  775.  
  776. 10.15:    Is there anything like an #ifdef for typedefs?
  777.  
  778. A:    Unfortunately, no.
  779.  
  780. 10.16:    How can I use a preprocessor #if expression to detect
  781.     endianness?
  782.  
  783. A:    You probably can't.
  784.  
  785. 10.18:    How can I preprocess some code to remove selected conditional
  786.     compilations, without preprocessing everything?
  787.  
  788. A:    Look for a program called unifdef, rmifdef, or scpp.
  789.  
  790. 10.19:    How can I list all of the pre#defined identifiers?
  791.  
  792. A:    If the compiler documentation is unhelpful, try extracting
  793.     printable strings from the compiler or preprocessor executable.
  794.  
  795. 10.20:    I have some old code that tries to construct identifiers with a
  796.     macro like "#define Paste(a, b) a/**/b", but it doesn't work any
  797.     more.
  798.  
  799. A:    Try the ANSI token-pasting operator ##.
  800.  
  801. 10.22:    What does the message "warning: macro replacement within a
  802.     string literal" mean?
  803.  
  804. A:    See question 11.18.
  805.  
  806. 10.23-4: I'm having trouble using macro arguments inside string
  807.     literals, using the `#' operator.
  808.  
  809. A:    See questions 11.17 and 11.18.
  810.  
  811. 10.25:    I've got this tricky preprocessing I want to do and I can't
  812.     figure out a way to do it.
  813.  
  814. A:    Consider writing your own little special-purpose preprocessing
  815.     tool, instead.
  816.  
  817. 10.26:    How can I write a macro which takes a variable number of
  818.     arguments?
  819.  
  820. A:    Here is one popular trick.  Note that the parentheses around
  821.     printf's argument list are in the macro call, not the
  822.     definition.
  823.  
  824.         #define DEBUG(args) (printf("DEBUG: "), printf args)
  825.  
  826.         if(n != 0) DEBUG(("n is %d\n", n));
  827.  
  828.  
  829. Section 11. ANSI/ISO Standard C
  830.  
  831. 11.1:    What is the "ANSI C Standard?"
  832.  
  833. A:    In 1983, the American National Standards Institute (ANSI)
  834.     commissioned a committee to standardize the C language.  Their
  835.     work was ratified as ANS X3.159-1989, and has since been adopted
  836.     as ISO/IEC 9899:1990, and later amended.
  837.  
  838. 11.2:    How can I get a copy of the Standard?
  839.  
  840. A:    Copies are available from ANSI in New York, or from Global
  841.     Engineering Documents in Englewood, CO, or from any national
  842.     standards body, or from ISO in Geneva, or republished within one
  843.     or more books.  See the unabridged list for details.
  844.  
  845. 11.2a:    Where can I get information about updates to the Standard?
  846.  
  847. A:    See the full list for pointers.
  848.  
  849. 11.3:    My ANSI compiler is complaining about prototype mismatches for
  850.     parameters declared float.
  851.  
  852. A:    You have mixed the new-style prototype declaration
  853.     "extern int func(float);" with the old-style definition
  854.     "int func(x) float x;".  "Narrow" types are treated differently
  855.     according to which syntax is used.  This problem can be fixed by
  856.     avoiding narrow types, or by using either new-style (prototype)
  857.     or old-style syntax consistently.
  858.  
  859. 11.4:    Can you mix old-style and new-style function syntax?
  860.  
  861. A:    Doing so is currently perfectly legal, for most argument types
  862.     (see question 11.3).
  863.  
  864. 11.5:    Why does the declaration "extern f(struct x *p);" give me a
  865.     warning message?
  866.  
  867. A:    A structure declared (or even mentioned) for the first time
  868.     within a prototype cannot be compatible with other structures
  869.     declared in the same source file.
  870.  
  871. 11.8:    Why can't I use const values in initializers and array
  872.     dimensions?
  873.  
  874. A:    The value of a const-qualified object is *not* a constant
  875.     expression in the full sense of the term.
  876.  
  877. 11.9:    What's the difference between "const char *"p and
  878.     "char * const" p?
  879.  
  880. A:    The former declares a pointer to a constant character; the
  881.     latter declares a constant pointer to a character.
  882.  
  883. 11.10:    Why can't I pass a char ** to a function which expects a
  884.     const char **?
  885.  
  886. A:    The rule which permits slight mismatches in qualified pointer
  887.     assignments is not applied recursively.
  888.  
  889. 11.12:    Can I declare main() as void, to shut off these annoying "main
  890.     returns no value" messages?
  891.  
  892. A:    No.
  893.  
  894. 11.13:    But what about main's third argument, envp?
  895.  
  896. A:    It's a non-standard (though common) extension.
  897.  
  898. 11.14:    I believe that declaring void main() can't fail, since I'm
  899.     calling exit() instead of returning.
  900.  
  901. A:    It doesn't matter whether main() returns or not, the problem is
  902.     that its caller may not even be able to *call* it correctly.
  903.  
  904. 11.15:    The book I've been using always uses void main().
  905.  
  906. A:    It's wrong.
  907.  
  908. 11.16:    Is exit(status) truly equivalent to returning the same status
  909.     from main()?
  910.  
  911. A:    Yes and no.  (See the full list for details.)
  912.  
  913. 11.17:    How do I get the ANSI "stringizing" preprocessing operator `#'
  914.     to stringize the macro's value instead of its name?
  915.  
  916. A:    You can use a two-step #definition to force a macro to be
  917.     expanded as well as stringized.
  918.  
  919. 11.18:    What does the message "warning: macro replacement within a
  920.     string literal" mean?
  921.  
  922. A:    Some pre-ANSI compilers/preprocessors expanded macro parameters
  923.     even inside string literals and character constants.
  924.  
  925. 11.19:    I'm getting strange syntax errors inside lines I've #ifdeffed
  926.     out.
  927.  
  928. A:    Under ANSI C, #ifdeffed-out text must still consist of "valid
  929.     preprocessing tokens."  This means that there must be no
  930.     newlines inside quotes, and no unterminated comments or quotes
  931.     (i.e. no single apostrophes).
  932.  
  933. 11.20:    What are #pragmas ?
  934.  
  935. A:    The #pragma directive provides a single, well-defined "escape
  936.     hatch" which can be used for extensions.
  937.  
  938. 11.21:    What does "#pragma once" mean?
  939.  
  940. A:    It is an extension implemented by some preprocessors to help
  941.     make header files idempotent.
  942.  
  943. 11.22:    Is char a[3] = "abc"; legal?
  944.  
  945. A:    Yes, in ANSI C.
  946.  
  947. 11.24:    Why can't I perform arithmetic on a void * pointer?
  948.  
  949. A:    The compiler doesn't know the size of the pointed-to objects.
  950.  
  951. 11.25:    What's the difference between memcpy() and memmove()?
  952.  
  953. A:    memmove() offers guaranteed behavior if the source and
  954.     destination arguments overlap.
  955.  
  956. 11.26:    What should malloc(0) do?
  957.  
  958. A:    The behavior is implementation-defined.
  959.  
  960. 11.27:    Why does the ANSI Standard not guarantee more than six case-
  961.     insensitive characters of external identifier significance?
  962.  
  963. A:    The problem is older linkers which cannot be forced (by mere
  964.     words in a Standard) to upgrade.
  965.  
  966. 11.29:    My compiler is rejecting the simplest possible test programs,
  967.     with all kinds of syntax errors.
  968.  
  969. A:    Perhaps it is a pre-ANSI compiler.
  970.  
  971. 11.30:    Why are some ANSI/ISO Standard library routines showing up as
  972.     undefined, even though I've got an ANSI compiler?
  973.  
  974. A:    Perhaps you don't have ANSI-compatible headers and libraries.
  975.  
  976. 11.31:    Does anyone have a tool for converting old-style C programs to
  977.     ANSI C, or for automatically generating prototypes?
  978.  
  979. A:    See the full list for details.
  980.  
  981. 11.32:    Why won't frobozz-cc, which claims to be ANSI compliant, accept
  982.     this code?
  983.  
  984. A:    Are you sure that the code being rejected doesn't rely on some
  985.     non-Standard extension?
  986.  
  987. 11.33:    What's the difference between implementation-defined,
  988.     unspecified, and undefined behavior?
  989.  
  990. A:    If you're writing portable code, ignore the distinctions.
  991.     Otherwise, see the full list.
  992.  
  993. 11.34:    I'm appalled that the ANSI Standard leaves so many issues
  994.     undefined.
  995.  
  996. A:    In most of these cases, the Standard is simply codifying
  997.     existing practice.
  998.  
  999. 11.35:    I just tried some allegedly-undefined code on an ANSI-conforming
  1000.     compiler, and got the results I expected.
  1001.  
  1002. A:    A compiler may do anything it likes when faced with undefined
  1003.     behavior, including doing what you expect.
  1004.  
  1005.  
  1006. Section 12. Stdio
  1007.  
  1008. 12.1:    What's wrong with the code "char c; while((c = getchar()) !=
  1009.     EOF) ..."?
  1010.  
  1011. A:    The variable to hold getchar's return value must be an int.
  1012.  
  1013. 12.2:    Why won't the code "while(!feof(infp)) {
  1014.     fgets(buf, MAXLINE, infp); fputs(buf, outfp); }" work?
  1015.  
  1016. A:    EOF is only indicated *after* an input routine has reached end-
  1017.     of-file.
  1018.  
  1019. 12.4:    My program's prompts and intermediate output don't always show
  1020.     up on the screen.
  1021.  
  1022. A:    It's best to use an explicit fflush(stdout) whenever output
  1023.     should definitely be visible.
  1024.  
  1025. 12.5:    How can I read one character at a time, without waiting for the
  1026.     RETURN key?
  1027.  
  1028. A:    See question 19.1.
  1029.  
  1030. 12.6:    How can I print a '%' character with printf?
  1031.  
  1032. A:    "%%".
  1033.  
  1034. 12.9:    How can printf() use %f for type double, if scanf() requires
  1035.     %lf?
  1036.  
  1037. A:    C's "default argument promotions" mean that values of type float
  1038.     are promoted to double.
  1039.  
  1040. 12.10:    How can I implement a variable field width with printf?
  1041.  
  1042. A:    Use printf("%*d", width, n).
  1043.  
  1044. 12.11:    How can I print numbers with commas separating the thousands?
  1045.  
  1046. A:    There is no standard routine (but see <locale.h>).
  1047.  
  1048. 12.12:    Why doesn't the call scanf("%d", i) work?
  1049.  
  1050. A:    The arguments you pass to scanf() must always be pointers.
  1051.  
  1052. 12.13:    Why doesn't the code "double d; scanf("%f", &d);" work?
  1053.  
  1054. A:    Unlike printf(), scanf() uses %lf for double, and %f for float.
  1055.  
  1056. 12.15:    How can I specify a variable width in a scanf() format string?
  1057.  
  1058. A:    You can't.
  1059.  
  1060. 12.17:    When I read numbers from the keyboard with scanf "%d\n", it
  1061.     seems to hang until I type one extra line of input.
  1062.  
  1063. A:    Try using "%d" instead of "%d\n".
  1064.  
  1065. 12.18:    I'm reading a number with scanf %d and then a string with
  1066.     gets(), but the compiler seems to be skipping the call to
  1067.     gets()!
  1068.  
  1069. A:    scanf() and gets() do not work well together.
  1070.  
  1071. 12.19:    I'm re-prompting the user if scanf() fails, but sometimes it
  1072.     seems to go into an infinite loop.
  1073.  
  1074. A:    scanf() tends to "jam" on bad input since it does not discard
  1075.     it.
  1076.  
  1077. 12.20:    Why does everyone say not to use scanf()?  What should I use
  1078.     instead?
  1079.  
  1080. A:    scanf() has a number of problems.  Usually, it's easier to read
  1081.     entire lines and then interpret them.
  1082.  
  1083. 12.21:    How can I tell how much destination buffer space I'll need for
  1084.     an arbitrary sprintf call?  How can I avoid overflowing the
  1085.     destination buffer with sprintf()?
  1086.  
  1087. A:    There are not (yet) any good answers to either of these
  1088.     excellent questions.
  1089.  
  1090. 12.23:    Why does everyone say not to use gets()?
  1091.  
  1092. A:    It cannot be prevented from overflowing the input buffer.
  1093.  
  1094. 12.24:    Why does errno contain ENOTTY after a call to printf()?
  1095.  
  1096. A:    Don't worry about it.  It is only meaningful for a program to
  1097.     inspect the contents of errno after an error has been reported.
  1098.  
  1099. 12.25:    What's the difference between fgetpos/fsetpos and ftell/fseek?
  1100.  
  1101. A:    fgetpos() and fsetpos() use a special typedef which may allow
  1102.     them to work with larger files than ftell() and fseek().
  1103.  
  1104. 12.26:    Will fflush(stdin) flush unread characters from the standard
  1105.     input stream?
  1106.  
  1107. A:    No.
  1108.  
  1109. 12.30:    I'm trying to update a file in place, by using fopen mode "r+",
  1110.     but it's not working.
  1111.  
  1112. A:    Be sure to call fseek between reading and writing.
  1113.  
  1114. 12.33:    How can I redirect stdin or stdout from within a program?
  1115.  
  1116. A:    Use freopen().
  1117.  
  1118. 12.34:    Once I've used freopen(), how can I get the original stream
  1119.     back?
  1120.  
  1121. A:    There isn't a good way.  Try avoiding freopen.
  1122.  
  1123. 12.38:    How can I read a binary data file properly?
  1124.  
  1125. A:    Be sure to specify "rb" mode when calling fopen().
  1126.  
  1127.  
  1128. Section 13. Library Functions
  1129.  
  1130. 13.1:    How can I convert numbers to strings?
  1131.  
  1132. A:    Just use sprintf().
  1133.  
  1134. 13.2:    Why does strncpy() not always write a '\0'?
  1135.  
  1136. A:    For mildly-interesting historical reasons.
  1137.  
  1138. 13.5:    Why do some versions of toupper() act strangely if given an
  1139.     upper-case letter?
  1140.  
  1141. A:    Older versions of toupper() and tolower() did not always work as
  1142.     expected in this regard.
  1143.  
  1144. 13.6:    How can I split up a string into whitespace-separated fields?
  1145.  
  1146. A:    Try strtok().
  1147.  
  1148. 13.7:    I need some code to do regular expression and wildcard matching.
  1149.  
  1150. A:    regexp libraries abound; see the full list for details.
  1151.  
  1152. 13.8:    I'm trying to sort an array of strings with qsort(), using
  1153.     strcmp() as the comparison function, but it's not working.
  1154.  
  1155. A:    You'll have to write a "helper" comparison function which takes
  1156.     two generic pointer arguments, converts them to char **, and
  1157.     dereferences them, yielding char *'s which can be usefully
  1158.     compared.
  1159.  
  1160. 13.9:    Now I'm trying to sort an array of structures, but the compiler
  1161.     is complaining that the function is of the wrong type for
  1162.     qsort().
  1163.  
  1164. A:    The comparison function must be declared as accepting "generic
  1165.     pointers" (const void *) which it then converts to structure
  1166.     pointers.
  1167.  
  1168. 13.10:    How can I sort a linked list?
  1169.  
  1170. A:    Algorithms like insertion sort and merge sort work well, or you
  1171.     can keep the list in order as you build it.
  1172.  
  1173. 13.11:    How can I sort more data than will fit in memory?
  1174.  
  1175. A:    You want an "external sort"; see the full list for details.
  1176.  
  1177. 13.12:    How can I get the time of day in a C program?
  1178.  
  1179. A:    Just use the time(), ctime(), and/or localtime() functions.
  1180.  
  1181. 13.13:    How can I convert a struct tm or a string into a time_t?
  1182.  
  1183. A:    The ANSI mktime() routine converts a struct tm to a time_t.  No
  1184.     standard routine exists to parse strings.
  1185.  
  1186. 13.14:    How can I perform calendar manipulations?
  1187.  
  1188. A:    The ANSI/ISO Standard C mktime() and difftime() functions
  1189.     provide some support for both problems.
  1190.  
  1191. 13.15:    I need a random number generator.
  1192.  
  1193. A:    The Standard C library has one: rand().
  1194.  
  1195. 13.16:    How can I get random integers in a certain range?
  1196.  
  1197. A:    One method is something like
  1198.  
  1199.         (int)((double)rand() / ((double)RAND_MAX + 1) * N)
  1200.  
  1201. 13.17:    Each time I run my program, I get the same sequence of numbers
  1202.     back from rand().
  1203.  
  1204. A:    You can call srand() to seed the pseudo-random number generator
  1205.     with a truly random initial value.
  1206.  
  1207. 13.18:    I need a random true/false value, so I'm just taking rand() % 2,
  1208.     but it's alternating 0, 1, 0, 1, 0...
  1209.  
  1210. A:    Try using the higher-order bits: see question 13.16.
  1211.  
  1212. 13.20:    How can I generate random numbers with a normal or Gaussian
  1213.     distribution?
  1214.  
  1215. A:    See the longer versions of this list for ideas.
  1216.  
  1217. 13.24:    I'm trying to port this old program.  Why do I get "undefined
  1218.     external" errors for some library functions?
  1219.  
  1220. A:    Some semistandard functions have been renamed or replaced over
  1221.     the years; see the full list for details.
  1222.  
  1223. 13.25:    I get errors due to library functions being undefined even
  1224.     though I #include the right header files.
  1225.  
  1226. A:    You may have to explicitly ask for the correct libraries to be
  1227.     searched.
  1228.  
  1229. 13.26:    I'm still getting errors due to library functions being
  1230.     undefined, even though I'm requesting the right libraries.
  1231.  
  1232. A:    Library search order is significant; usually, you must search
  1233.     the libraries last.
  1234.  
  1235. 13.28:    What does it mean when the linker says that _end is undefined?
  1236.  
  1237. A:    You generally get that message only when other things are
  1238.     undefined, too.
  1239.  
  1240.  
  1241. Section 14. Floating Point
  1242.  
  1243. 14.1:    When I set a float variable to 3.1, why is printf() printing it
  1244.     as 3.0999999?
  1245.  
  1246. A:    Most computers use base 2 for floating-point numbers, and many
  1247.     fractions (including 0.1 decimal) are not exactly representable
  1248.     in base 2.
  1249.  
  1250. 14.2:    Why is sqrt(144.) giving me crazy numbers?
  1251.  
  1252. A:    Make sure that you have #included <math.h>, and correctly
  1253.     declared other functions returning double.
  1254.  
  1255. 14.3:    I keep getting "undefined: sin" compilation errors.
  1256.  
  1257. A:    Make sure you're actually linking with the math library.
  1258.  
  1259. 14.4:    My floating-point calculations are acting strangely and giving
  1260.     me different answers on different machines.
  1261.  
  1262. A:    First, see question 14.2 above.  If the problem isn't that
  1263.     simple, see the full list for a brief explanation, or any good
  1264.     programming book for a better one.
  1265.  
  1266. 14.5:    What's a good way to check for "close enough" floating-point
  1267.     equality?
  1268.  
  1269. A:    The best way is to use an accuracy threshold which is relative
  1270.     to the magnitude of the numbers being compared.
  1271.  
  1272. 14.6:    How do I round numbers?
  1273.  
  1274. A:    For positive numbers, try (int)(x + 0.5) .
  1275.  
  1276. 14.7:    Where is C's exponentiation operator?
  1277.  
  1278. A:    Try using the pow() function.
  1279.  
  1280. 14.8:    The pre-#defined constant M_PI seems to be missing from
  1281.     <math.h>.
  1282.  
  1283. A:    That constant is not standard.
  1284.  
  1285. 14.9:    How do I test for IEEE NaN and other special values?
  1286.  
  1287. A:    There is not yet a portable way, but see the full list for
  1288.     ideas.
  1289.  
  1290. 14.11:    What's a good way to implement complex numbers in C?
  1291.  
  1292. A:    It is straightforward to define a simple structure and some
  1293.     arithmetic functions to manipulate them.
  1294.  
  1295. 14.12:    I'm looking for some mathematical library code.
  1296.  
  1297. A:    Ajay Shah maintains an index of free numerical software which is
  1298.     archived in the comp.lang.c directory at rtfm.mit.edu (see
  1299.     question 20.40).
  1300.  
  1301. 14.13:    I'm having trouble with a Turbo C program which crashes and says
  1302.     something like "floating point formats not linked."
  1303.  
  1304. A:    You may have to insert an extra call to a floating-point library
  1305.     routine to force loading of floating-point support.
  1306.  
  1307.  
  1308. Section 15. Variable-Length Argument Lists
  1309.  
  1310. 15.1:    I heard that you have to #include <stdio.h> before calling
  1311.     printf().  Why?
  1312.  
  1313. A:    So that a proper prototype for printf() will be in scope.
  1314.  
  1315. 15.2:    How can %f be used for both float and double arguments in
  1316.     printf()?
  1317.  
  1318. A:    In variable-length argument lists, types char and short int are
  1319.     promoted to int, and float is promoted to double.
  1320.  
  1321. 15.3:    Why don't function prototypes guard against mismatches in
  1322.     printf's arguments?
  1323.  
  1324. A:    Function prototypes do not provide any information about the
  1325.     number and types of variable arguments.
  1326.  
  1327. 15.4:    How can I write a function that takes a variable number of
  1328.     arguments?
  1329.  
  1330. A:    Use the <stdarg.h> header.
  1331.  
  1332. 15.5:    How can I write a function that takes a format string and a
  1333.     variable number of arguments, like printf(), and passes them to
  1334.     printf() to do most of the work?
  1335.  
  1336. A:    Use vprintf(), vfprintf(), or vsprintf().
  1337.  
  1338. 15.6:    How can I write a function analogous to scanf(), that calls
  1339.     scanf() to do most of the work?
  1340.  
  1341. A:    Unfortunately, vscanf and the like are not standard.
  1342.  
  1343. 15.7:    I have a pre-ANSI compiler, without <stdarg.h>.  What can I do?
  1344.  
  1345. A:    There's an older header, <varargs.h>, which offers about the
  1346.     same functionality.
  1347.  
  1348. 15.8:    How can I discover how many arguments a function was actually
  1349.     called with?
  1350.  
  1351. A:    Any function which takes a variable number of arguments must be
  1352.     able to determine *from the arguments' values* how many of them
  1353.     there are.
  1354.  
  1355. 15.9:    My compiler isn't letting me declare a function that accepts
  1356.     *only* variable arguments.
  1357.  
  1358. A:    Standard C requires at least one fixed argument.
  1359.  
  1360. 15.10:    Why isn't "va_arg(argp, float)" working?
  1361.  
  1362. A:    Because the "default argument promotions" apply in variable-
  1363.     length argument lists, you should always use
  1364.     va_arg(argp, double).
  1365.  
  1366. 15.11:    I can't get va_arg() to pull in an argument of type pointer-to-
  1367.     function.
  1368.  
  1369. A:    Use a typedef.
  1370.  
  1371. 15.12:    How can I write a function which takes a variable number of
  1372.     arguments and passes them to some other function ?
  1373.  
  1374. A:    In general, you cannot.
  1375.  
  1376. 15.13:    How can I call a function with an argument list built up at run
  1377.     time?
  1378.  
  1379. A:    You can't.
  1380.  
  1381.  
  1382. Section 16. Strange Problems
  1383.  
  1384. 16.2a:    I'm getting baffling syntax errors which make no sense at all,
  1385.     and it seems like large chunks of my program aren't being
  1386.     compiled.
  1387.  
  1388. A:    Check for unclosed comments or mismatched preprocessing
  1389.     directives.
  1390.  
  1391. 16.2b:    Why isn't my procedure call working?
  1392.  
  1393. A:    Function calls always require parenthesized argument lists.
  1394.  
  1395. 16.3:    This program crashes before it even runs!
  1396.  
  1397. A:    Look for very large, local arrays.
  1398.     (See also questions 11.12, 16.4, 16.5, and 18.4.)
  1399.  
  1400. 16.4:    I have a program that seems to run correctly, but then crashes
  1401.     as it's exiting.
  1402.  
  1403. A:    See the full list for ideas.
  1404.  
  1405. 16.5:    This program runs perfectly on one machine, but I get weird
  1406.     results on another.
  1407.  
  1408. A:    See the full list for a brief list of possibilities.
  1409.  
  1410. 16.6:    Why does the code "char *p = "hello, world!"; p[0] = 'H';"
  1411.     crash?
  1412.  
  1413. A:    String literals are not modifiable, except (in effect) when they
  1414.     are used as array initializers.
  1415.  
  1416. 16.8:    What does "Segmentation violation" mean?
  1417.  
  1418. A:    It generally means that your program tried to access memory it
  1419.     shouldn't have, invariably as a result of stack corruption or
  1420.     improper pointer use.
  1421.  
  1422.  
  1423. Section 17. Style
  1424.  
  1425. 17.1:    What's the best style for code layout in C?
  1426.  
  1427. A:    There is no one "best style," but see the full list for a few
  1428.     suggestions.
  1429.  
  1430. 17.3:    Is the code "if(!strcmp(s1, s2))" good style?
  1431.  
  1432. A:    Not particularly.
  1433.  
  1434. 17.4:    Why do some people write if(0 == x) instead of if(x == 0)?
  1435.  
  1436. A:    It's a trick to guard against the common error of writing
  1437.     if(x = 0) .
  1438.  
  1439. 17.5:    I came across some code that puts a (void) cast before each call
  1440.     to printf().  Why?
  1441.  
  1442. A:    To suppress warnings about otherwise discarded return values.
  1443.  
  1444. 17.8:    What is "Hungarian Notation"?
  1445.  
  1446. A:    It's a naming convention which encodes things about a variable's
  1447.     type in its name.
  1448.  
  1449. 17.9:    Where can I get the "Indian Hill Style Guide" and other coding
  1450.     standards?
  1451.  
  1452. A:    See the unabridged list.
  1453.  
  1454. 17.10:    Some people say that goto's are evil and that I should never use
  1455.     them.  Isn't that a bit extreme?
  1456.  
  1457. A:    Yes.  Absolute rules are an imperfect approach to good
  1458.     programming style.
  1459.  
  1460.  
  1461. Section 18. Tools and Resources
  1462.  
  1463. 18.1:    I'm looking for C development tools (cross-reference generators,
  1464.     code beautifiers, etc.).
  1465.  
  1466. A:    See the full list for a few names.
  1467.  
  1468. 18.2:    How can I track down these pesky malloc problems?
  1469.  
  1470. A:    See the full list for a list of tools.
  1471.  
  1472. 18.3:    What's a free or cheap C compiler I can use?
  1473.  
  1474. A:    See the full list for a brief catalog.
  1475.  
  1476. 18.4:    I just typed in this program, and it's acting strangely.  Can
  1477.     you see anything wrong with it?
  1478.  
  1479. A:    See if you can run lint first.
  1480.  
  1481. 18.5:    How can I shut off the "warning: possible pointer alignment
  1482.     problem" message which lint gives me for each call to malloc()?
  1483.  
  1484. A:    It may be easier simply to ignore the message, perhaps in an
  1485.     automated way with grep -v.
  1486.  
  1487. 18.7:    Where can I get an ANSI-compatible lint?
  1488.  
  1489. A:    See the unabridged list for two commercial products.
  1490.  
  1491. 18.8:    Don't ANSI function prototypes render lint obsolete?
  1492.  
  1493. A:    No.  A good compiler may match most of lint's diagnostics; few
  1494.     provide all.
  1495.  
  1496. 18.9:    Are there any C tutorials or other resources on the net?
  1497.  
  1498. A:    There are several of them.
  1499.  
  1500. 18.10:    What's a good book for learning C?
  1501.  
  1502. A:    There are far too many books on C to list here; the full list
  1503.     contains a few pointers.
  1504.  
  1505. 18.13:    Where can I find the sources of the standard C libraries?
  1506.  
  1507. A:    Several possibilites are listed in the full list.
  1508.  
  1509. 18.14:    I need code to parse and evaluate expressions.
  1510.  
  1511. A:    Several available packages are mentioned in the full list.
  1512.  
  1513. 18.15:    Where can I get a BNF or YACC grammar for C?
  1514.  
  1515. A:    See the ANSI Standard, or the unabridged list.
  1516.  
  1517. 18.15a:    Does anyone have a C compiler test suite I can use?
  1518.  
  1519. A:    See the full list for several sources.
  1520.  
  1521. 18.15c:    Where are some collections of useful code fragments and
  1522.     examples?
  1523.  
  1524. A:    See the full list for a few sources.
  1525.  
  1526. 18.16:    Where and how can I get copies of all these freely distributable
  1527.     programs?
  1528.  
  1529. A:    See the regular postings in the comp.sources.unix and
  1530.     comp.sources.misc newsgroups, or the full version of this list,
  1531.     for information.
  1532.  
  1533.  
  1534. Section 19. System Dependencies
  1535.  
  1536. 19.1:    How can I read a single character from the keyboard without
  1537.     waiting for the RETURN key?
  1538.  
  1539. A:    Alas, there is no standard or portable way to do this sort of
  1540.     thing in C.
  1541.  
  1542. 19.2:    How can I find out how many characters are available for
  1543.     reading, or do a non-blocking read?
  1544.  
  1545. A:    These, too, are entirely operating-system-specific.
  1546.  
  1547. 19.3:    How can I display a percentage-done indication that updates
  1548.     itself in place, or show one of those "twirling baton" progress
  1549.     indicators?
  1550.  
  1551. A:    The character '\r' is a carriage return, and '\b' is a
  1552.     backspace.
  1553.  
  1554. 19.4:    How can I clear the screen, or print things in inverse video, or
  1555.     move the cursor?
  1556.  
  1557. A:    The only halfway-portable solution is the curses library.
  1558.  
  1559. 19.5:    How do I read the arrow keys?  What about function keys?
  1560.  
  1561. A:    Such things depend on the keyboard, operating system, and
  1562.     library you're using.
  1563.  
  1564. 19.6:    How do I read the mouse?
  1565.  
  1566. A:    What system are you using?
  1567.  
  1568. 19.7:    How can I do serial ("comm") port I/O?
  1569.  
  1570. A:    It's system-dependent.
  1571.  
  1572. 19.8:    How can I direct output to the printer?
  1573.  
  1574. A:    See the full list for ideas.
  1575.  
  1576. 19.9:    How do I send escape sequences to control a terminal or other
  1577.     device?
  1578.  
  1579. A:    By sending them.  ESC is '\033' in ASCII.
  1580.  
  1581. 19.10:    How can I do graphics?
  1582.  
  1583. A:    There is no portable way.
  1584.  
  1585. 19.11:    How can I check whether a file exists?
  1586.  
  1587. A:    You can try the access() or stat() functions.  Otherwise, the
  1588.     only guaranteed and portable way is to try opening the file.
  1589.  
  1590. 19.12:    How can I find out the size of a file, prior to reading it in?
  1591.  
  1592. A:    You might be able to get an estimate using stat() or fseek/ftell
  1593.     (but see the full list for caveats).
  1594.  
  1595. 19.12a:    How can I find the modification date of a file?
  1596.  
  1597. A:    Try stat().
  1598.  
  1599. 19.13:    How can a file be shortened in-place without completely clearing
  1600.     or rewriting it?
  1601.  
  1602. A:    There are various ways to do this, but there is no portable
  1603.     solution.
  1604.  
  1605. 19.14:    How can I insert or delete a line in the middle of a file?
  1606.  
  1607. A:    Short of rewriting the file, you probably can't.
  1608.  
  1609. 19.15:    How can I recover the file name given an open file descriptor?
  1610.  
  1611. A:    This problem is, in general, insoluble.  It is best to remember
  1612.     the names of files yourself when you open them
  1613.  
  1614. 19.16:    How can I delete a file?
  1615.  
  1616. A:    The Standard C Library function is remove().
  1617.  
  1618. 19.17:    What's wrong with the call fopen("c:\newdir\file.dat", "r")?
  1619.  
  1620. A:    You probably need to double those backslashes.
  1621.  
  1622. 19.18:    How can I increase the allowable number of simultaneously open
  1623.     files?
  1624.  
  1625. A:    Check your system documentation.
  1626.  
  1627. 19.20:    How can I read a directory in a C program?
  1628.  
  1629. A:    See if you can use the opendir() and readdir() routines.
  1630.  
  1631. 19.22:    How can I find out how much memory is available?
  1632.  
  1633. A:    Your operating system may provide a routine which returns this
  1634.     information.
  1635.  
  1636. 19.23:    How can I allocate arrays or structures bigger than 64K?
  1637.  
  1638. A:    Some operating systems won't let you.
  1639.  
  1640. 19.24:    What does the error message "DGROUP exceeds 64K" mean?
  1641.  
  1642. A:    It means that you have too much static data.
  1643.  
  1644. 19.25:    How can I access memory located at a certain address?
  1645.  
  1646. A:    Set a pointer to the absolute address.
  1647.  
  1648. 19.27:    How can I invoke another program from within a C program?
  1649.  
  1650. A:    Use system().
  1651.  
  1652. 19.30:    How can I invoke another program and trap its output?
  1653.  
  1654. A:    Unix and some other systems provide a popen() routine.
  1655.  
  1656. 19.31:    How can my program discover the complete pathname to the
  1657.     executable from which it was invoked?
  1658.  
  1659. A:    argv[0] may contain all or part of the pathname.  You may be
  1660.     able to duplicate the command language interpreter's search path
  1661.     logic to locate the executable.
  1662.  
  1663. 19.32:    How can I automatically locate a program's configuration files
  1664.     in the same directory as the executable?
  1665.  
  1666. A:    It's hard; see also question 19.31 above.
  1667.  
  1668. 19.33:    How can a process change an environment variable in its caller?
  1669.  
  1670. A:    If it's possible to do so at all, it's system dependent.
  1671.  
  1672. 19.36:    How can I read in an object file and jump to routines in it?
  1673.  
  1674. A:    You want a dynamic linker or loader.
  1675.  
  1676. 19.37:    How can I implement a delay, or time a user's response, with sub-
  1677.     second resolution?
  1678.  
  1679. A:    Unfortunately, there is no portable way.
  1680.  
  1681. 19.38:    How can I trap or ignore keyboard interrupts like control-C?
  1682.  
  1683. A:    Use signal().
  1684.  
  1685. 19.39:    How can I handle floating-point exceptions gracefully?
  1686.  
  1687. A:    Take a look at matherr() and signal(SIGFPE).
  1688.  
  1689. 19.40:    How do I...  Use sockets?  Do networking?  Write client/server
  1690.     applications?
  1691.  
  1692. A:    These questions have more to do with the networking facilities
  1693.     you have available than they do with C.
  1694.  
  1695. 19.40b:    How do I use BIOS calls?  How can I write ISR's?  How can I
  1696.     create TSR's?
  1697.  
  1698. A:    These are very particular to specific systems.
  1699.  
  1700. 19.41:    But I can't use all these nonstandard, system-dependent
  1701.     functions, because my program has to be ANSI compatible!
  1702.  
  1703. A:    That's an impossible requirement.  Any real program requires at
  1704.     least a few services which ANSI doesn't define.
  1705.  
  1706.  
  1707. Section 20. Miscellaneous
  1708.  
  1709. 20.1:    How can I return multiple values from a function?
  1710.  
  1711. A:    Either pass pointers to several locations which the function can
  1712.     fill in, or have the function return a structure containing the
  1713.     desired values.
  1714.  
  1715. 20.3:    How do I access command-line arguments?
  1716.  
  1717. A:    Via main()'s argv parameter.
  1718.  
  1719. 20.5:    How can I write data files which can be read on other machines
  1720.     with different data formats?
  1721.  
  1722. A:    The most portable solution is to use text files.
  1723.  
  1724. 20.6:    How can I call a function, given its name as a string?
  1725.  
  1726. A:    The most straightforward thing to do is to maintain a
  1727.     correspondence table of names and function pointers.
  1728.  
  1729. 20.8:    How can I implement sets or arrays of bits?
  1730.  
  1731. A:    Use arrays of char or int, with a few macros to access the
  1732.     desired bit at the proper index.
  1733.  
  1734. 20.9:    How can I determine whether a machine's byte order is big-endian
  1735.     or little-endian?
  1736.  
  1737. A:    The usual tricks involve pointers or unions.
  1738.  
  1739. 20.10:    How can I convert integers to binary or hexadecimal?
  1740.  
  1741. A:    Internally, integers are already in binary.  During I/O, you may
  1742.     be able to select a base.
  1743.  
  1744. 20.11:    Can I use base-2 constants (something like 0b101010)?
  1745.     Is there a printf() format for binary?
  1746.  
  1747. A:    No, on both counts.
  1748.  
  1749. 20.12:    What is the most efficient way to count the number of bits which
  1750.     are set in a value?
  1751.  
  1752. A:    Many "bit-fiddling" problems like this one can be sped up and
  1753.     streamlined using lookup tables.
  1754.  
  1755. 20.13:    What's the best way of making my program efficient?
  1756.  
  1757. A:    By picking good algorithms and implementing them carefully.
  1758.  
  1759. 20.14:    Are pointers really faster than arrays?  How much do function
  1760.     calls slow things down?
  1761.  
  1762. A:    Precise answers to these and many similar questions depend on
  1763.     the processor and compiler in use.
  1764.  
  1765. 20.17:    Is there a way to switch on strings?
  1766.  
  1767. A:    Not directly.
  1768.  
  1769. 20.18:    Is there a way to have non-constant case labels (i.e. ranges or
  1770.     arbitrary expressions)?
  1771.  
  1772. A:    No.
  1773.  
  1774. 20.19:    Are the outer parentheses in return statements really optional?
  1775.  
  1776. A:    Yes.
  1777.  
  1778. 20.20:    Why don't C comments nest?  Are they legal inside quoted
  1779.     strings?
  1780.  
  1781. A:    C comments don't nest because PL/I's comments don't either.  The
  1782.     character sequences /* and */ are not special within double-
  1783.     quoted strings.
  1784.  
  1785. 20.24:    Why doesn't C have nested functions?
  1786.  
  1787. A:    They were deliberately left out of C as a simplification.
  1788.  
  1789. 20.25:    How can I call FORTRAN (C++, BASIC, Pascal, Ada, LISP) functions
  1790.     from C?
  1791.  
  1792. A:    The answer is entirely dependent on the machine and the specific
  1793.     calling sequences of the various compilers in use.
  1794.  
  1795. 20.26:    Does anyone know of a program for converting Pascal or FORTRAN
  1796.     to C?
  1797.  
  1798. A:    Several freely distributable programs are available, namely
  1799.     ptoc, p2c, and f2c.  See the full list for details.
  1800.  
  1801. 20.27:    Can I use a C++ compiler to compile C code?
  1802.  
  1803. A:    Not necessarily; C++ is not a strict superset of C.
  1804.  
  1805. 20.28:    I need to compare two strings for close, but not necessarily
  1806.     exact, equality.
  1807.  
  1808. A:    See the full list for ideas.
  1809.  
  1810. 20.29:    What is hashing?
  1811.  
  1812. A:    A mapping of strings (or other data structures) to integers, for
  1813.     easier searching.
  1814.  
  1815. 20.31:    How can I find the day of the week given the date?
  1816.  
  1817. A:    Use mktime(), Zeller's congruence, or some code in the full
  1818.     list.
  1819.  
  1820. 20.32:    Will 2000 be a leap year?
  1821.  
  1822. A:    Yes.
  1823.  
  1824. 20.34:    How do you write a program which produces its own source code as
  1825.     its output?
  1826.  
  1827. A:    Here's one:
  1828.  
  1829.         char*s="char*s=%c%s%c;main(){printf(s,34,s,34);}";
  1830.         main(){printf(s,34,s,34);}
  1831.  
  1832. 20.35:    What is "Duff's Device"?
  1833.  
  1834. A:    It's a devastatingly deviously unrolled byte-copying loop.  See
  1835.     the full list for details.
  1836.  
  1837. 20.36:    When will the next Obfuscated C Code Contest be held?  How can I
  1838.     get a copy of previous winning entries?
  1839.  
  1840. A:    See the full list, or send e-mail to judges@toad.com .
  1841.  
  1842. 20.37:    What was the entry keyword mentioned in K&R1?
  1843.  
  1844. A:    It was reserved to allow functions with multiple, differently-
  1845.     named entry points, but it has been withdrawn.
  1846.  
  1847. 20.38:    Where does the name "C" come from, anyway?
  1848.  
  1849. A:    C was derived from B, which was inspired by BCPL, which was a
  1850.     simplification of CPL.
  1851.  
  1852. 20.39:    How do you pronounce "char"?
  1853.  
  1854. A:    Like the English words "char," "care," or "car" (your choice).
  1855.  
  1856. 20.40:    Where can I get extra copies of this list?
  1857.  
  1858. A:    An up-to-date copy may be obtained from ftp.eskimo.com in
  1859.     directory u/s/scs/C-faq/.  You can also just pull it off the
  1860.     net; the unabridged version is normally posted on the first of
  1861.     each month, with an Expires: line which should keep it around
  1862.     all month.  It is also posted to the newsgroups comp.answers and
  1863.     news.answers .  Several sites archive news.answers postings and
  1864.     other FAQ lists, including this one; two sites are rtfm.mit.edu
  1865.     (directory pub/usenet), and ftp.uu.net (directory usenet).  An
  1866.     archie server should help you find others.
  1867.  
  1868.     A hypertext version of this FAQ list is available at
  1869.     http://www.eskimo.com/~scs/C-faq/top.html .
  1870.     An extended version has been published by Addison-Wesley
  1871.     as _C Programming FAQs: Frequently Asked Questions_
  1872.     (ISBN 0-201-84519-9).
  1873.  
  1874.                         Steve Summit
  1875.                         scs@eskimo.com
  1876.  
  1877. This article is Copyright 1990-1996 by Steve Summit.
  1878. Content from the book _C Programming FAQs: Frequently Asked Questions_
  1879. is made available here by permission of the author and the publisher as
  1880. a service to the community.  It is intended to complement the use of the
  1881. published text and is protected by international copyright laws.  The
  1882. content is made available here and may be accessed freely for personal
  1883. use but may not be republished without permission.
  1884.