Re: Opinions about a book
On Mon, 05 May 2008 21:00:26 +0500, arnuld wrote:
<snip>
> Also, IIRC, const in C99, makes a compile time constant. That's good
> thing too. At least, I don't have to use enum for array size :P
No, const doesn't do this in C99. However, variable length arrays allow
you to use non-constant expressions in automatic array declarations.
|