home *** CD-ROM | disk | FTP | other *** search
/ ftp.pasteur.org/FAQ/ / ftp-pasteur-org-FAQ.zip / FAQ / C-faq / toc < prev   
Encoding:
Internet Message Format  |  2004-02-02  |  30.3 KB

  1. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!nntp4.savvis.net!nwnews.wa.com!news-chi-2.sprintlink.net!news-central.sprintlink.net!news-in-central.sprintlink.net!news.sprintlink.net!news.eskimo.com!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 FAQ list Table of Contents
  5. Followup-To: poster
  6. Date: 1 Feb 2004 11:00:13 GMT
  7. Organization: only when absolutely necessary
  8. Lines: 674
  9. Approved: news-answers-request@MIT.Edu
  10. Expires: 3 Mar 2004 00:00:00 GMT
  11. Message-ID: <2004Feb01.0600.scs.0004@eskimo.com>
  12. Reply-To: scs@eskimo.com
  13. NNTP-Posting-Host: eskimo.com
  14. X-Trace: eskinews.eskimo.com 1075633213 3711 204.122.16.13 (1 Feb 2004 11:00:13 GMT)
  15. X-Complaints-To: abuse@eskimo.com
  16. NNTP-Posting-Date: 1 Feb 2004 11:00:13 GMT
  17. Summary: questions only (answers elsewhere)
  18. X-Last-Modified: February 7, 1999
  19. X-Archive-Name: C-faq/toc
  20. X-Version: 3.5
  21. X-URL: http://www.eskimo.com/~scs/C-faq/top.html
  22. X-PGP-Signature: Version: 2.6.2
  23.     iQCSAwUBNr5tYt6sm4I1rmP1AQG/YgPmNVdryv5rqXPD0kRCvo/XJWUTRsg7f/JL
  24.     OmwQ7AuopSEsyrUCM02hSdJtA8lRG5pfcCaeXKynyPHDRrDVqNSuboaas+aqP/DW
  25.     K47h/xrC4LkLQtc77lcYscwwhRoREmn6GzbrCRczcRK/lWf+1LWKUE6eu/XX7wFW
  26.     aXwwfMU=
  27.     =J/uc
  28. Originator: scs@eskimo.com
  29. Xref: senator-bedfellow.mit.edu comp.lang.c:674247 comp.lang.c.moderated:26259 comp.answers:56162 news.answers:265670
  30.  
  31. Archive-name: C-faq/toc
  32. Comp-lang-c-archive-name: C-FAQ-list.toc
  33. URL: http://www.eskimo.com/~scs/C-faq/top.html
  34.  
  35. [Last modified February 7, 1999 by scs.]
  36.  
  37. This article is a table of contents for the comp.lang.c frequently-asked
  38. questions (FAQ) list, listing the questions which the abridged and full
  39. versions of the FAQ list answer.  (Both lists answer all questions; the
  40. wordings of the questions in this article are taken from the abridged
  41. list.)
  42.  
  43. If you have only just come across this article, you will naturally be
  44. wondering where the lists which it indexes can be found.  The unabridged
  45. version is normally posted to comp.lang.c on the first of each month,
  46. and the abridged version twice per month, both with Expires: lines which
  47. should keep them around all month.  They can also be found in the
  48. newsgroups comp.answers and news.answers .  They are available for
  49. anonymous ftp from ftp.eskimo.com in directoru u/s/scs/C-faq/.
  50. Several sites archive news.answers postings and other FAQ lists,
  51. including comp.lang.c's: two sites are rtfm.mit.edu (directories
  52. pub/usenet/news.answers/C-faq/ and pub/usenet/comp.lang.c/ ) and
  53. ftp.uu.net (directory usenet/news.answers/C-faq/ ).
  54. A web version is at http://www.eskimo.com/~scs/C-faq/top.html .
  55. See the meta-FAQ list in news.answers for more information.
  56.  
  57. Section 1. Declarations and Initializations
  58. Section 2. Structures, Unions, and Enumerations
  59. Section 3. Expressions
  60. Section 4. Pointers
  61. Section 5. Null Pointers
  62. Section 6. Arrays and Pointers
  63. Section 7. Memory Allocation
  64. Section 8. Characters and Strings
  65. Section 9. Boolean Expressions and Variables
  66. Section 10. C Preprocessor
  67. Section 11. ANSI/ISO Standard C
  68. Section 12. Stdio
  69. Section 13. Library Functions
  70. Section 14. Floating Point
  71. Section 15. Variable-Length Argument Lists
  72. Section 16. Strange Problems
  73. Section 17. Style
  74. Section 18. Tools and Resources
  75. Section 19. System Dependencies
  76. Section 20. Miscellaneous
  77.             Bibliography
  78.             Acknowledgements
  79.  
  80.  
  81. Section 1. Declarations and Initializations
  82.  
  83. 1.1:    How do you decide which integer type to use?
  84. 1.4:    What should the 64-bit type on a machine that can support it?
  85. 1.7:    What's the best way to declare and define global variables?
  86. 1.11:    What does extern mean in a function declaration?
  87. 1.12:    What's the auto keyword good for?
  88. 1.14:    I can't seem to define a linked list node which contains a
  89.     pointer to itself.
  90. 1.21:    How do I declare an array of N pointers to functions returning
  91.     pointers to functions returning pointers to characters?
  92. 1.22:    How can I declare a function that returns a pointer to a
  93.     function of its own type?
  94. 1.25:    My compiler is complaining about an invalid redeclaration of a
  95.     function, but I only define it once.
  96. 1.25b:    What's the right declaration for main()?
  97. 1.30:    What am I allowed to assume about the initial values
  98.     of variables which are not explicitly initialized?
  99. 1.31:    Why can't I initialize a local array with a string?
  100. 1.31b:    What's wrong with "char *p = malloc(10);" ?
  101. 1.32:    What is the difference between char a[] = "string"; and
  102.     char *p = "string"; ?
  103. 1.34:    How do I initialize a pointer to a function?
  104.  
  105.  
  106. Section 2. Structures, Unions, and Enumerations
  107.  
  108. 2.1:    What's the difference between struct x1 { ... }; and
  109.     typedef struct { ... } x2; ?
  110. 2.2:    Why doesn't "struct x { ... }; x thestruct;" work?
  111. 2.3:    Can a structure contain a pointer to itself?
  112. 2.4:    What's the best way of implementing opaque (abstract) data types
  113.     in C?
  114. 2.6:    I came across some code that declared a structure with the last
  115.     member an array of one element, and then did some tricky
  116.     allocation to make it act like the array had several elements.
  117.     Is this legal or portable?
  118. 2.7:    I heard that structures could be assigned to variables and
  119.     passed to and from functions, but K&R1 says not.
  120. 2.8:    Is there a way to compare structures automatically?
  121. 2.10:    Can I pass constant values to functions which accept structure
  122.     arguments?
  123. 2.11:    How can I read/write structures from/to data files?
  124. 2.12:    How can I turn off structure padding?
  125. 2.13:    Why does sizeof report a larger size than I expect for a
  126.     structure type?
  127. 2.14:    How can I determine the byte offset of a field within a
  128.     structure?
  129. 2.15:    How can I access structure fields by name at run time?
  130. 2.18:    I have a program which works correctly, but dumps core after it
  131.     finishes.  Why?
  132. 2.20:    Can I initialize unions?
  133. 2.22:    What is the difference between an enumeration and a set of
  134.     preprocessor #defines?
  135. 2.24:    Is there an easy way to print enumeration values symbolically?
  136.  
  137.  
  138. Section 3. Expressions
  139.  
  140. 3.1:    Why doesn't the code "a[i] = i++;" work?
  141. 3.2:    Under my compiler, the code "int i = 7;
  142.     printf("%d\n", i++ * i++);" prints 49.  Regardless of the order
  143.     of evaluation, shouldn't it print 56?
  144. 3.3:    What should the code "int i = 3; i = i++;" do?
  145. 3.3b:    Here's a slick expression: "a ^= b ^= a ^= b".  It swaps a and b
  146.     without using a temporary.
  147. 3.4:    Don't precedence and parentheses dictate order of evaluation?
  148. 3.5:    But what about the && and || operators?
  149. 3.8:    What's a "sequence point"?
  150. 3.9:    So given a[i] = i++; we don't know which cell of a[] gets
  151.     written to, but i does get incremented by one, right?
  152. 3.12:    If I'm not using the value of the expression, should I use i++
  153.     or ++i to increment a variable?
  154. 3.14:    Why doesn't the code "int a = 1000, b = 1000;
  155.     long int c = a * b;" work?
  156. 3.16:    Can I use ?: on the left-hand side of an assignment expression?
  157.  
  158.  
  159. Section 4. Pointers
  160.  
  161. 4.2:    What's wrong with "char *p; *p = malloc(10);"?
  162. 4.3:    Does *p++ increment p, or what it points to?
  163. 4.5:    I want to use a char * pointer to step over some ints.  Why
  164.     doesn't "((int *)p)++;" work?
  165. 4.8:    I have a function which accepts, and is supposed to initialize,
  166.     a pointer, but the pointer in the caller remains unchanged.
  167. 4.9:    Can I use a void ** pointer as a parameter so that a function
  168.     can accept a generic pointer by reference?
  169. 4.10:    I have a function which accepts a pointer to an int.  How can I
  170.     pass a constant like 5 to it?
  171. 4.11:    Does C even have "pass by reference"?
  172. 4.12:    I've seen different methods used for calling functions via
  173.     pointers.
  174.  
  175.  
  176. Section 5. Null Pointers
  177.  
  178. 5.1:    What is this infamous null pointer, anyway?
  179. 5.2:    How do I get a null pointer in my programs?
  180. 5.3:    Is the abbreviated pointer comparison "if(p)" to test for non-
  181.     null pointers valid?
  182. 5.4:    What is NULL and how is it #defined?
  183. 5.5:    How should NULL be defined on a machine which uses a nonzero bit
  184.     pattern as the internal representation of a null pointer?
  185. 5.6:    If NULL were defined as "((char *)0)," wouldn't that make
  186.     function calls which pass an uncast NULL work?
  187. 5.9:    If NULL and 0 are equivalent as null pointer constants, which
  188.     should I use?
  189. 5.10:    But wouldn't it be better to use NULL, in case the value of NULL
  190.     changes?
  191. 5.12:    I use the preprocessor macro "#define Nullptr(type) (type *)0"
  192.     to help me build null pointers of the correct type.
  193. 5.13:    This is strange.  NULL is guaranteed to be 0, but the null
  194.     pointer is not?
  195. 5.14:    Why is there so much confusion surrounding null pointers?
  196. 5.15:    I'm confused.  I just can't understand all this null pointer
  197.     stuff.
  198. 5.16:    Given all the confusion surrounding null pointers, wouldn't it
  199.     be easier simply to require them to be represented internally by
  200.     zeroes?
  201. 5.17:    Seriously, have any actual machines really used nonzero null
  202.     pointers?
  203. 5.20:    What does a run-time "null pointer assignment" error mean?
  204.  
  205.  
  206. Section 6. Arrays and Pointers
  207.  
  208. 6.1:    I had the definition char a[6] in one source file, and in
  209.     another I declared extern char *a.  Why didn't it work?
  210. 6.2:    But I heard that char a[] was identical to char *a.
  211. 6.3:    So what is meant by the "equivalence of pointers and arrays" in
  212.     C?
  213. 6.4:    Why are array and pointer declarations interchangeable as
  214.     function formal parameters?
  215. 6.7:    How can an array be an lvalue, if you can't assign to it?
  216. 6.8:    What is the real difference between arrays and pointers?
  217. 6.9:    Someone explained to me that arrays were really just constant
  218.     pointers.
  219. 6.11:    I came across some "joke" code containing the "expression"
  220.     5["abcdef"] .  How can this be legal C?
  221. 6.12:    What's the difference between array and &array?
  222. 6.13:    How do I declare a pointer to an array?
  223. 6.14:    How can I set an array's size at run time?
  224. 6.15:    How can I declare local arrays of a size matching a passed-in
  225.     array?
  226. 6.16:    How can I dynamically allocate a multidimensional array?
  227. 6.17:    Can I simulate a non-0-based array with a pointer?
  228. 6.18:    My compiler complained when I passed a two-dimensional array to
  229.     a function expecting a pointer to a pointer.
  230. 6.19:    How do I write functions which accept two-dimensional arrays
  231.     when the width is not known at compile time?
  232. 6.20:    How can I use statically- and dynamically-allocated
  233.     multidimensional arrays interchangeably when passing them to
  234.     functions?
  235. 6.21:    Why doesn't sizeof properly report the size of an array which is
  236.     a parameter to a function?
  237.  
  238.  
  239. Section 7. Memory Allocation
  240.  
  241. 7.1:    Why doesn't the code "char *answer; gets(answer);" work?
  242. 7.2:    I can't get strcat() to work.  I tried "char *s3 =
  243.     strcat(s1, s2);" but I got strange results.
  244. 7.3:    But the man page for strcat() says that it takes two char *'s as
  245.     arguments.  How am I supposed to know to allocate things?
  246. 7.3b:    I just tried the code "char *p; strcpy(p, "abc");" and it
  247.     worked.  Why didn't it crash?
  248. 7.3c:    How much memory does a pointer variable allocate?
  249. 7.5a:    I have a function that is supposed to return a string, but when
  250.     it returns to its caller, the returned string is garbage.
  251. 7.5b:    So what's the right way to return a string?
  252. 7.6:    Why am I getting "warning: assignment of pointer from integer
  253.     lacks a cast" for calls to malloc()?
  254. 7.7:    Why does some code carefully cast the values returned by malloc
  255.     to the pointer type being allocated?
  256. 7.8:    Why does so much code leave out the multiplication by
  257.     sizeof(char) when allocating strings?
  258. 7.14:    I've heard that some operating systems don't actually allocate
  259.     malloc'ed memory until the program tries to use it.  Is this
  260.     legal?
  261. 7.16:    I'm allocating a large array for some numeric work, but malloc()
  262.     is acting strangely.
  263. 7.17:    I've got 8 meg of memory in my PC.  Why can I only seem to
  264.     malloc 640K or so?
  265. 7.19:    My program is crashing, apparently somewhere down inside malloc.
  266. 7.20:    You can't use dynamically-allocated memory after you free it,
  267.     can you?
  268. 7.21:    Why isn't a pointer null after calling free()?
  269. 7.22:    When I call malloc() to allocate memory for a local pointer, do
  270.     I have to explicitly free() it?
  271. 7.23:    When I free a dynamically-allocated structure containing
  272.     pointers, do I also have to free each subsidiary pointer?
  273. 7.24:    Must I free allocated memory before the program exits?
  274. 7.25:    Why doesn't my program's memory usage go down when I free
  275.     memory?
  276. 7.26:    How does free() know how many bytes to free?
  277. 7.27:    So can I query the malloc package to find out how big an
  278.     allocated block is?
  279. 7.30:    Is it legal to pass a null pointer as the first argument to
  280.     realloc()?
  281. 7.31:    What's the difference between calloc() and malloc()?
  282. 7.32:    What is alloca() and why is its use discouraged?
  283.  
  284.  
  285. Section 8. Characters and Strings
  286.  
  287. 8.1:    Why doesn't "strcat(string, '!');" work?
  288. 8.2:    Why won't the test if(string == "value") correctly compare
  289.     string against the value?
  290. 8.3:    Why can't I assign strings to character arrays?
  291. 8.6:    How can I get the numeric (character set) value corresponding to
  292.     a character?
  293. 8.9:    Why is sizeof('a') not 1?
  294.  
  295.  
  296. Section 9. Boolean Expressions and Variables
  297.  
  298. 9.1:    What is the right type to use for Boolean values in C?
  299. 9.2:    What if a built-in logical or relational operator "returns"
  300.     something other than 1?
  301. 9.3:    Is if(p), where p is a pointer, valid?
  302.  
  303.  
  304. Section 10. C Preprocessor
  305.  
  306. 10.2:    I've got some cute preprocessor macros that let me write C code
  307.     that looks more like Pascal.  What do y'all think?
  308. 10.3:    How can I write a generic macro to swap two values?
  309. 10.4:    What's the best way to write a multi-statement macro?
  310. 10.6:    What are .h files and what should I put in them?
  311. 10.7:    Is it acceptable for one header file to #include another?
  312. 10.8a:    What's the difference between #include <> and #include "" ?
  313. 10.8b:    What are the complete rules for header file searching?
  314. 10.9:    I'm getting strange syntax errors on the very first declaration
  315.     in a file, but it looks fine.
  316. 10.10b:    I'm #including the header file for a function, but the linker
  317.     keeps saying it's undefined.
  318. 10.11:    Where can I get a copy of a missing header file?
  319. 10.12:    How can I construct preprocessor #if expressions which compare
  320.     strings?
  321. 10.13:    Does the sizeof operator work in preprocessor #if directives?
  322. 10.14:    Can I use an #ifdef in a #define line, to define something two
  323.     different ways?
  324. 10.15:    Is there anything like an #ifdef for typedefs?
  325. 10.16:    How can I use a preprocessor #if expression to detect
  326.     endianness?
  327. 10.18:    How can I preprocess some code to remove selected conditional
  328.     compilations, without preprocessing everything?
  329. 10.19:    How can I list all of the predefined identifiers?
  330. 10.20:    I have some old code that tries to construct identifiers with a
  331.     macro like "#define Paste(a, b) a/**/b", but it doesn't work any
  332.     more.
  333. 10.22:    What does the message "warning: macro replacement within a
  334.     string literal" mean?
  335. 10.23-4: I'm having trouble using macro arguments inside string
  336.     literals, using the `#' operator.
  337. 10.25:    I've got this tricky preprocessing I want to do and I can't
  338.     figure out a way to do it.
  339. 10.26:    How can I write a macro which takes a variable number of
  340.     arguments?
  341.  
  342.  
  343. Section 11. ANSI/ISO Standard C
  344.  
  345. 11.1:    What is the "ANSI C Standard?"
  346. 11.2:    How can I get a copy of the Standard?
  347. 11.2b:    Where can I get information about updates to the Standard?
  348. 11.3:    My ANSI compiler is complaining about prototype mismatches for
  349.     parameters declared float.
  350. 11.4:    Can you mix old-style and new-style function syntax?
  351. 11.5:    Why does the declaration "extern int f(struct x *p);" give me a
  352.     warning message?
  353. 11.8:    Why can't I use const values in initializers and array
  354.     dimensions?
  355. 11.9:    What's the difference between "const char *p" and
  356.     "char * const p"?
  357. 11.10:    Why can't I pass a char ** to a function which expects a
  358.     const char **?
  359. 11.12a:    What's the correct declaration of main()?
  360. 11.12b:    Can I declare main() as void, to shut off these annoying
  361.     "main returns no value" messages?
  362. 11.13:    But what about main's third argument, envp?
  363. 11.14:    I believe that declaring void main() can't fail, since I'm
  364.     calling exit() instead of returning.
  365. 11.15:    The book I've been using always uses void main().
  366. 11.16:    Is exit(status) truly equivalent to returning the same status
  367.     from main()?
  368. 11.17:    How do I get the ANSI "stringizing" preprocessing operator `#'
  369.     to stringize the macro's value instead of its name?
  370. 11.18:    What does the message "warning: macro replacement within a
  371.     string literal" mean?
  372. 11.19:    I'm getting strange syntax errors inside lines I've #ifdeffed
  373.     out.
  374. 11.20:    What are #pragmas ?
  375. 11.21:    What does "#pragma once" mean?
  376. 11.22:    Is char a[3] = "abc"; legal?
  377. 11.24:    Why can't I perform arithmetic on a void * pointer?
  378. 11.25:    What's the difference between memcpy() and memmove()?
  379. 11.26:    What should malloc(0) do?
  380. 11.27:    Why does the ANSI Standard not guarantee more than six case-
  381.     insensitive characters of external identifier significance?
  382. 11.29:    My compiler is rejecting the simplest possible test programs,
  383.     with all kinds of syntax errors.
  384. 11.30:    Why are some ANSI/ISO Standard library functions showing up as
  385.     undefined, even though I've got an ANSI compiler?
  386. 11.31:    Does anyone have a tool for converting old-style C programs to
  387.     ANSI C, or for automatically generating prototypes?
  388. 11.32:    Why won't frobozz-cc, which claims to be ANSI compliant, accept
  389.     this code?
  390. 11.33:    What's the difference between implementation-defined,
  391.     unspecified, and undefined behavior?
  392. 11.34:    I'm appalled that the ANSI Standard leaves so many issues
  393.     undefined.
  394. 11.35:    I just tried some allegedly-undefined code on an ANSI-conforming
  395.     compiler, and got the results I expected.
  396.  
  397.  
  398. Section 12. Stdio
  399.  
  400. 12.1:    What's wrong with the code "char c; while((c = getchar()) !=
  401.     EOF) ..."?
  402. 12.2:    Why won't the code "while(!feof(infp)) {
  403.     fgets(buf, MAXLINE, infp); fputs(buf, outfp); }" work?
  404. 12.4:    My program's prompts and intermediate output don't always show
  405.     up on the screen.
  406. 12.5:    How can I read one character at a time, without waiting for the
  407.     RETURN key?
  408. 12.6:    How can I print a '%' character with printf?
  409. 12.9:    How can printf() use %f for type double, if scanf() requires
  410.     %lf?
  411. 12.9b:    What printf format should I use for a typedef when I don't know
  412.     the underlying type?
  413. 12.10:    How can I implement a variable field width with printf?
  414. 12.11:    How can I print numbers with commas separating the thousands?
  415. 12.12:    Why doesn't the call scanf("%d", i) work?
  416. 12.13:    Why doesn't the code "double d; scanf("%f", &d);" work?
  417. 12.15:    How can I specify a variable width in a scanf() format string?
  418. 12.17:    When I read numbers from the keyboard with scanf "%d\n", it
  419.     seems to hang until I type one extra line of input.
  420. 12.18:    I'm reading a number with scanf %d and then a string with
  421.     gets(), but the compiler seems to be skipping the call to
  422.     gets()!
  423. 12.19:    I'm re-prompting the user if scanf() fails, but sometimes it
  424.     seems to go into an infinite loop.
  425. 12.20:    Why does everyone say not to use scanf()?  What should I use
  426.     instead?
  427. 12.21:    How can I tell how much destination buffer space I'll need for
  428.     an arbitrary sprintf call?  How can I avoid overflowing the
  429.     destination buffer with sprintf()?
  430. 12.23:    Why does everyone say not to use gets()?
  431. 12.24:    Why does errno contain ENOTTY after a call to printf()?
  432. 12.25:    What's the difference between fgetpos/fsetpos and ftell/fseek?
  433. 12.26:    Will fflush(stdin) flush unread characters from the standard
  434.     input stream?
  435. 12.30:    I'm trying to update a file in place, by using fopen mode "r+",
  436.     but it's not working.
  437. 12.33:    How can I redirect stdin or stdout from within a program?
  438. 12.34:    Once I've used freopen(), how can I get the original stream
  439.     back?
  440. 12.36b:    How can I arrange to have output go two places at once?
  441. 12.38:    How can I read a binary data file properly?
  442.  
  443.  
  444. Section 13. Library Functions
  445.  
  446. 13.1:    How can I convert numbers to strings?
  447. 13.2:    Why does strncpy() not always write a '\0'?
  448. 13.5:    Why do some versions of toupper() act strangely if given an
  449.     upper-case letter?
  450. 13.6:    How can I split up a string into whitespace-separated fields?
  451. 13.7:    I need some code to do regular expression and wildcard matching.
  452. 13.8:    I'm trying to sort an array of strings with qsort(), using
  453.     strcmp() as the comparison function, but it's not working.
  454. 13.9:    Now I'm trying to sort an array of structures, but the compiler
  455.     is complaining that the function is of the wrong type for
  456.     qsort().
  457. 13.10:    How can I sort a linked list?
  458. 13.11:    How can I sort more data than will fit in memory?
  459. 13.12:    How can I get the time of day in a C program?
  460. 13.13:    How can I convert a struct tm or a string into a time_t?
  461. 13.14:    How can I perform calendar manipulations?
  462. 13.14b:    Does C have any Year 2000 problems?
  463. 13.15:    I need a random number generator.
  464. 13.16:    How can I get random integers in a certain range?
  465. 13.17:    Each time I run my program, I get the same sequence of numbers
  466.     back from rand().
  467. 13.18:    I need a random true/false value, so I'm just taking rand() % 2,
  468.     but it's alternating 0, 1, 0, 1, 0...
  469. 13.20:    How can I generate random numbers with a normal or Gaussian
  470.     distribution?
  471. 13.24:    I'm trying to port this old program.  Why do I get "undefined
  472.     external" errors for some library functions?
  473. 13.25:    I get errors due to library functions being undefined even
  474.     though I #include the right header files.
  475. 13.26:    I'm still getting errors due to library functions being
  476.     undefined, even though I'm requesting the right libraries.
  477. 13.28:    What does it mean when the linker says that _end is undefined?
  478.  
  479.  
  480. Section 14. Floating Point
  481.  
  482. 14.1:    When I set a float variable to 3.1, why is printf printing it as
  483.     3.0999999?
  484. 14.2:    Why is sqrt(144.) giving me crazy numbers?
  485. 14.3:    I keep getting "undefined: sin" compilation errors.
  486. 14.4:    My floating-point calculations are acting strangely and giving
  487.     me different answers on different machines.
  488. 14.5:    What's a good way to check for "close enough" floating-point
  489.     equality?
  490. 14.6:    How do I round numbers?
  491. 14.7:    Where is C's exponentiation operator?
  492. 14.8:    The predefined constant M_PI seems to be missing from <math.h>.
  493. 14.9:    How do I test for IEEE NaN and other special values?
  494. 14.11:    What's a good way to implement complex numbers in C?
  495. 14.12:    I'm looking for some mathematical library code.
  496. 14.13:    I'm having trouble with a Turbo C program which crashes and says
  497.     something like "floating point formats not linked."
  498.  
  499.  
  500. Section 15. Variable-Length Argument Lists
  501.  
  502. 15.1:    I heard that you have to #include <stdio.h> before calling
  503.     printf().  Why?
  504. 15.2:    How can %f be used for both float and double arguments in
  505.     printf()?
  506. 15.3:    Why don't function prototypes guard against mismatches in
  507.     printf's arguments?
  508. 15.4:    How can I write a function that takes a variable number of
  509.     arguments?
  510. 15.5:    How can I write a function that takes a format string and a
  511.     variable number of arguments, like printf(), and passes them to
  512.     printf() to do most of the work?
  513. 15.6:    How can I write a function analogous to scanf(), that calls
  514.     scanf() to do most of the work?
  515. 15.7:    I have a pre-ANSI compiler, without <stdarg.h>.  What can I do?
  516. 15.8:    How can I discover how many arguments a function was actually
  517.     called with?
  518. 15.9:    My compiler isn't letting me declare a function that accepts
  519.     *only* variable arguments.
  520. 15.10:    Why isn't "va_arg(argp, float)" working?
  521. 15.11:    I can't get va_arg() to pull in an argument of type pointer-to-
  522.     function.
  523. 15.12:    How can I write a function which takes a variable number of
  524.     arguments and passes them to some other function ?
  525. 15.13:    How can I call a function with an argument list built up at run
  526.     time?
  527.  
  528.  
  529. Section 16. Strange Problems
  530.  
  531. 16.1b:    I'm getting baffling syntax errors which make no sense at all,
  532.     and it seems like large chunks of my program aren't being
  533.     compiled.
  534. 16.1c:    Why isn't my procedure call working?
  535. 16.3:    This program crashes before it even runs!
  536. 16.4:    I have a program that seems to run correctly, but then crashes
  537.     as it's exiting.
  538. 16.5:    This program runs perfectly on one machine, but I get weird
  539.     results on another.
  540. 16.6:    Why does the code "char *p = "hello, world!"; p[0] = 'H';"
  541.     crash?
  542. 16.8:    What does "Segmentation violation" mean?
  543.  
  544.  
  545. Section 17. Style
  546.  
  547. 17.1:    What's the best style for code layout in C?
  548. 17.3:    Is the code "if(!strcmp(s1, s2))" good style?
  549. 17.4:    Why do some people write if(0 == x) instead of if(x == 0)?
  550. 17.5:    I came across some code that puts a (void) cast before each call
  551.     to printf().  Why?
  552. 17.8:    What is "Hungarian Notation"?
  553. 17.9:    Where can I get the "Indian Hill Style Guide" and other coding
  554.     standards?
  555. 17.10:    Some people say that goto's are evil and that I should never use
  556.     them.  Isn't that a bit extreme?
  557.  
  558.  
  559. Section 18. Tools and Resources
  560.  
  561. 18.1:    I'm looking for C development tools (cross-reference generators,
  562.     code beautifiers, etc.).
  563. 18.2:    How can I track down these pesky malloc problems?
  564. 18.3:    What's a free or cheap C compiler I can use?
  565. 18.4:    I just typed in this program, and it's acting strangely.  Can
  566.     you see anything wrong with it?
  567. 18.5:    How can I shut off the "warning: possible pointer alignment
  568.     problem" message which lint gives me for each call to malloc()?
  569. 18.7:    Where can I get an ANSI-compatible lint?
  570. 18.8:    Don't ANSI function prototypes render lint obsolete?
  571. 18.9:    Are there any C tutorials or other resources on the net?
  572. 18.10:    What's a good book for learning C?
  573. 18.13:    Where can I find the sources of the standard C libraries?
  574. 18.13b:    Is there an on-line C reference manual?
  575. 18.13c:    Where can I get a copy of the ANSI/ISO C Standard?
  576. 18.14:    I need code to parse and evaluate expressions.
  577. 18.15:    Where can I get a BNF or YACC grammar for C?
  578. 18.15b:    Does anyone have a C compiler test suite I can use?
  579. 18.15c:    Where are some collections of useful code fragments and
  580.     examples?
  581. 18.15d:    I need code for performing multiple precision arithmetic.
  582. 18.16:    Where and how can I get copies of all these freely distributable
  583.     programs?
  584.  
  585.  
  586. Section 19. System Dependencies
  587.  
  588. 19.1:    How can I read a single character from the keyboard without
  589.     waiting for the RETURN key?
  590. 19.2:    How can I find out how many characters are available for
  591.     reading, or do a non-blocking read?
  592. 19.3:    How can I display a percentage-done indication that updates
  593.     itself in place, or show one of those "twirling baton" progress
  594.     indicators?
  595. 19.4:    How can I clear the screen, or print text in color, or move the
  596.     cursor?
  597. 19.5:    How do I read the arrow keys?  What about function keys?
  598. 19.6:    How do I read the mouse?
  599. 19.7:    How can I do serial ("comm") port I/O?
  600. 19.8:    How can I direct output to the printer?
  601. 19.9:    How do I send escape sequences to control a terminal or other
  602.     device?
  603. 19.10:    How can I do graphics?
  604. 19.11:    How can I check whether a file exists?
  605. 19.12:    How can I find out the size of a file, prior to reading it in?
  606. 19.12b:    How can I find the modification date of a file?
  607. 19.13:    How can a file be shortened in-place without completely clearing
  608.     or rewriting it?
  609. 19.14:    How can I insert or delete a line in the middle of a file?
  610. 19.15:    How can I recover the file name given an open file descriptor?
  611. 19.16:    How can I delete a file?
  612. 19.16b:    How do I copy files?
  613. 19.17:    What's wrong with the call fopen("c:\newdir\file.dat", "r")?
  614. 19.18:    How can I increase the allowable number of simultaneously open
  615.     files?
  616. 19.20:    How can I read a directory in a C program?
  617. 19.22:    How can I find out how much memory is available?
  618. 19.23:    How can I allocate arrays or structures bigger than 64K?
  619. 19.24:    What does the error message "DGROUP exceeds 64K" mean?
  620. 19.25:    How can I access memory located at a certain address?
  621. 19.27:    How can I invoke another program from within a C program?
  622. 19.30:    How can I invoke another program and trap its output?
  623. 19.31:    How can my program discover the complete pathname to the
  624.     executable from which it was invoked?
  625. 19.32:    How can I automatically locate a program's configuration files
  626.     in the same directory as the executable?
  627. 19.33:    How can a process change an environment variable in its caller?
  628. 19.36:    How can I read in an object file and jump to locations in it?
  629. 19.37:    How can I implement a delay, or time a user's response, with sub-
  630.     second resolution?
  631. 19.38:    How can I trap or ignore keyboard interrupts like control-C?
  632. 19.39:    How can I handle floating-point exceptions gracefully?
  633. 19.40:    How do I...  Use sockets?  Do networking?  Write client/server
  634.     applications?
  635. 19.40b:    How do I...  Use BIOS calls?  Write ISR's?  Create TSR's?
  636. 19.40c:    I'm trying to compile a program in which "union REGS" and
  637.     int86() are undefined.
  638. 19.41:    But I can't use all these nonstandard, system-dependent
  639.     functions, because my program has to be ANSI compatible!
  640.  
  641.  
  642. Section 20. Miscellaneous
  643.  
  644. 20.1:    How can I return multiple values from a function?
  645. 20.3:    How do I access command-line arguments?
  646. 20.5:    How can I write data files which can be read on other machines
  647.     with different data formats?
  648. 20.6:    How can I call a function, given its name as a string?
  649. 20.8:    How can I implement sets or arrays of bits?
  650. 20.9:    How can I determine whether a machine's byte order is big-endian
  651.     or little-endian?
  652. 20.10:    How can I convert integers to binary or hexadecimal?
  653. 20.11:    Can I use base-2 constants (something like 0b101010)?
  654.     Is there a printf() format for binary?
  655. 20.12:    What is the most efficient way to count the number of bits which
  656.     are set in an integer?
  657. 20.13:    What's the best way of making my program efficient?
  658. 20.14:    Are pointers really faster than arrays?  How much do function
  659.     calls slow things down?
  660. 20.15b:    People claim that optimizing compilers are good, but mine can't
  661.     even replace i/=2 with a shift.
  662. 20.15c:    How can I swap two values without using a temporary?
  663. 20.17:    Is there a way to switch on strings?
  664. 20.18:    Is there a way to have non-constant case labels (i.e. ranges or
  665.     arbitrary expressions)?
  666. 20.19:    Are the outer parentheses in return statements really optional?
  667. 20.20:    Why don't C comments nest?  Are they legal inside quoted
  668.     strings?
  669. 20.20b:    What does a+++++b mean ?
  670. 20.24:    Why doesn't C have nested functions?
  671. 20.24b:    What is assert()?
  672. 20.25:    How can I call FORTRAN (C++, BASIC, Pascal, Ada, LISP) functions
  673.     from C?
  674. 20.26:    Does anyone know of a program for converting Pascal or FORTRAN
  675.     to C?
  676. 20.27:    Is C++ a superset of C?  Can I use a C++ compiler to compile C
  677.     code?
  678. 20.28:    I need to compare two strings for close, but not necessarily
  679.     exact, equality.
  680. 20.29:    What is hashing?
  681. 20.31:    How can I find the day of the week given the date?
  682. 20.32:    Will 2000 be a leap year?
  683. 20.34:    How do you write a program which produces its own source code as
  684.     output?
  685. 20.35:    What is "Duff's Device"?
  686. 20.36:    When will the next Obfuscated C Code Contest be held?
  687.     How can I get a copy of previous winning entries?
  688. 20.37:    What was the entry keyword mentioned in K&R1?
  689. 20.38:    Where does the name "C" come from, anyway?
  690. 20.39:    How do you pronounce "char"?
  691. 20.39b:    What do "lvalue" and "rvalue" mean?
  692. 20.40:    Where can I get extra copies of this list?
  693.  
  694.                     Steve Summit
  695.                     scs@eskimo.com
  696.  
  697.  
  698. This article is Copyright 1990-1999 by Steve Summit.
  699. Content from the book _C Programming FAQs: Frequently Asked Questions_
  700. is made available here by permission of the author and the publisher as
  701. a service to the community.  It is intended to complement the use of the
  702. published text and is protected by international copyright laws.  The
  703. content is made available here and may be accessed freely for personal
  704. use but may not be republished without permission.
  705.