Variable Sized Arrays in C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:16:29Z http://stackoverflow.com/feeds/question/1054085 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1054085/variable-sized-arrays-in-c 5 Variable Sized Arrays in C adk 2009-06-28T02:36:54Z 2009-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#1054093 11 Answer by rlbond for Variable Sized Arrays in C rlbond 2009-06-28T02:41:12Z 2009-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#1054094 8 Answer by rpetrich for Variable Sized Arrays in C rpetrich 2009-06-28T02:41:23Z 2009-06-28T02:41:23Z <p>The <a href="http://www.informit.com/guides/content.aspx?g=cplusplus&amp;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#1054154 2 Answer by Jim Buck for Variable Sized Arrays in C Jim Buck 2009-06-28T03:18:47Z 2009-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 &lt;malloc.h&gt; ... int *k = (int *)_alloca(sizeof(*k)*r); </code></pre> http://stackoverflow.com/questions/1054085/variable-sized-arrays-in-c/1056223#1056223 2 Answer by sigjuice for Variable Sized Arrays in C sigjuice 2009-06-29T01:28:59Z 2009-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#1621354 0 Answer by Arabcoder for Variable Sized Arrays in C Arabcoder 2009-10-25T16:42:36Z 2009-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>