vote up 5 vote down star
3

I guess my question is whether the following is valid C

int main(void) {
  int r = 3;
  int k[r];
  return 0;
}

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.

Thank you

flag

5 Answers

vote up 2 vote down check

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):

#include <malloc.h>

...

int *k = (int *)_alloca(sizeof(*k)*r);
link|flag
3  
It was a GCC extension, but was codified into C99. MSVC indeed does not support it yet. Note also that on Linux, it's alloca(), not _alloca, and is in <alloca.h> – bdonlan Jun 28 at 3:24
1  
It has been standardized for 10 years... – Matthew Flaschen Jun 28 at 7:01
I have always used this, but did not get the error until I used windows this clears up my confusion – adk Jun 29 at 2:29
vote up 0 vote down

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)

yes but it is limited to 1mb

link|flag
vote up 2 vote down

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.

void foo(int n)
{
    int bar[n];
    .
    .
}

There is no explicit error checking here. A large n can easily cause problems.

link|flag
vote up 8 vote down

The C99 standard added variable-length arrays, but other vendors such as GCC added them much earlier.

link|flag
vote up 11 vote down

It is in C99. MSVC only supports C89.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.