[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.c

Re: what is it for an array ? int f(int VAR) { int tab[VAR]; .. }

Joel C. Salomon

5/16/2011 6:00:00 PM

On Monday, May 16, 2011 1:52:16 PM UTC-4, Alain Spineux wrote:
> What does
> int tab[n];
> means ?

It's the same as

int tab[17];

only with 17=n.

--Joel