home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!charon.amdahl.com!pacbell.com!att-out!rutgers!princeton!mccc!pjh
- From: pjh@mccc.edu (P. J. Holsberg)
- Newsgroups: comp.lang.c
- Subject: Idle Questions about ANSI C
- Message-ID: <1992Nov13.213708.5456@mccc.edu>
- Date: 13 Nov 92 21:37:08 GMT
- Organization: The College on the Other Side of U. S. 1
- Lines: 14
-
- 1) Is "size_t" ever not the same as "unsigned int"? If so, in what situation?
-
- 2) Is there ever a need for a static array defined inside a function in
- ANSI C? I.e.,
-
- int func(char c, int i)
- {
- ...
- static char name[30];
- ...
- }
-
- Thanks,
- Pete
-