home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / lang / c / 16491 < prev    next >
Encoding:
Internet Message Format  |  1992-11-14  |  562 b 

  1. Path: sparky!uunet!charon.amdahl.com!pacbell.com!att-out!rutgers!princeton!mccc!pjh
  2. From: pjh@mccc.edu (P. J. Holsberg)
  3. Newsgroups: comp.lang.c
  4. Subject: Idle Questions about ANSI C
  5. Message-ID: <1992Nov13.213708.5456@mccc.edu>
  6. Date: 13 Nov 92 21:37:08 GMT
  7. Organization: The College on the Other Side of U. S. 1
  8. Lines: 14
  9.  
  10. 1) Is "size_t" ever not the same as "unsigned int"? If so, in what situation?
  11.  
  12. 2) Is there ever a need for a static array defined inside a function in
  13. ANSI C? I.e.,
  14.  
  15. int func(char c, int i)
  16. {
  17.     ...
  18.     static char name[30];
  19.     ...
  20. }
  21.  
  22. Thanks,
  23. Pete
  24.