Variable Sized Arrays in C - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T19:16:29Zhttp://stackoverflow.com/feeds/question/1054085http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1054085/variable-sized-arrays-in-c5Variable Sized Arrays in Cadk2009-06-28T02:36:54Z2009-10-25T16:42:36Z
<p>I guess my question is whether the following is valid C</p>
<pre><code>int main(void) {
int r = 3;
int k[r];
return 0;
}
</code></pre>
<p>If so, would some one care to explain why it does not work in Microsoft's C compiler, but in GCC, and when it was added to the C standard.</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1054085/variable-sized-arrays-in-c/1054093#105409311Answer by rlbond for Variable Sized Arrays in Crlbond2009-06-28T02:41:12Z2009-06-28T02:41:12Z<p>It is in C99. MSVC only supports C89.</p>
http://stackoverflow.com/questions/1054085/variable-sized-arrays-in-c/1054094#10540948Answer by rpetrich for Variable Sized Arrays in Crpetrich2009-06-28T02:41:23Z2009-06-28T02:41:23Z<p>The <a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=215" rel="nofollow">C99 standard</a> added variable-length arrays, but other vendors such as GCC added them much earlier.</p>
http://stackoverflow.com/questions/1054085/variable-sized-arrays-in-c/1054154#10541542Answer by Jim Buck for Variable Sized Arrays in CJim Buck2009-06-28T03:18:47Z2009-06-28T03:26:33Z<p>It is a GCC extension that the current MSVC does not support. You can replace it in MSVC fairly easily with an _alloca (a stack allocation that requires no manual deallocation on the part of the programmer):</p>
<pre><code>#include <malloc.h>
...
int *k = (int *)_alloca(sizeof(*k)*r);
</code></pre>
http://stackoverflow.com/questions/1054085/variable-sized-arrays-in-c/1056223#10562232Answer by sigjuice for Variable Sized Arrays in Csigjuice2009-06-29T01:28:59Z2009-06-29T01:28:59Z<p>I'm sorry this is not an answer, but I'd like to point out a potential problem with using variable-length arrays. Most of the code that I have come across looks like this.</p>
<pre><code>void foo(int n)
{
int bar[n];
.
.
}
</code></pre>
<p>There is no explicit error checking here. A large n can easily cause problems.</p>
http://stackoverflow.com/questions/1054085/variable-sized-arrays-in-c/1621354#16213540Answer by Arabcoder for Variable Sized Arrays in CArabcoder2009-10-25T16:42:36Z2009-10-25T16:42:36Z<p>It is a GCC extension that the current MSVC does not support. You can replace it in MSVC fairly easily with an _alloca (a stack allocation that requires no manual deallocation on the part of the programmer)</p>
<p>yes but it is limited to 1mb</p>