Enabling VLAs (variable length arrays) in MS Visual C++?

20,347

Solution 1

MSVC is not a C99 compiler, and does not support variable length arrays.

At https://docs.microsoft.com/en-us/cpp/c-language/ansi-conformance MSVC is documented as conforming to C90.

Solution 2

VLA's are much neater to write but you can get similar behaviour using alloca() when the dynamic memory allocation of std::vector is prohibitive.

http://msdn.microsoft.com/en-us/library/x9sx5da1.aspx

Using alloca() in your example would give:

#include <stdlib.h>
#include <alloca.h>

int main(int argc, char **argv)
{
  char* pc = (char*) alloca(sizeof(char) * (argc+5));

  /* do something useful with pc */

  return EXIT_SUCCESS;
}

Solution 3

I met same problem, this is not possible in MS Visual C++ 2015, instead you can use vector to do almost the same, only difference is neglectable overhead of heap resource manage routine(new/delete).

Although VLAs is convenient, but to allocate non-deterministic amount of memory from the stack at risk of stack overflow is generally not a good idea.

Share:
20,347
Shinnok
Author by

Shinnok

I'm a passionate Open Source advocate and C++ developer, Unix head and occasionally sysadmin. I'm also deeply interested and involved in Computer, Network and Information Security as an independent security researcher and aficionado. With a ~13 year industry uptime, I cast a wide and evolving range of interest and experience in programming and scripting languages, operating systems, network and web technologies, with a rather strong focus on systems, network and application development on Unix flavors and cross-platform technologies. If you want to find out what I'm currently working on or interested in, don't hesitate to get in touch with me.

Updated on July 04, 2021

Comments

  • Shinnok
    Shinnok almost 3 years

    How can I enable the use of VLAs, variable length arrays as defined in C99, in MS Visual C++ or that is not possible at all?

    Yes I know that the C++ standard is based on C89 and that VLAs are not available in C89 standard and thus aren't available in C++, but MSVC++ is supposed to be a C compiler also, a behavior that can be switched on using the /TC compiler parameter (Compile as C Code (/TC)). But doing so does not seem to enable VLAs and the compiling process fails with the same errors when building as C++ (Compile as C++ Code (/TP)). Maybe MSVC++ C compiler is C89 compliant only or I am missing something (some special construct or pragma/define)?

    Code sample:

    #include <stdlib.h>
    
    int main(int argc, char **argv)
    {
      char pc[argc+5];
    
      /* do something useful with pc */
    
      return EXIT_SUCCESS;
    }
    

    Compile errors:

    error C2057: expected constant expression

    error C2466: cannot allocate an array of constant size 0

    error C2133: 'pc' : unknown size