The following code wont compile. It give me an error that 'a constant size was expected'. Is there any way or a compiler flag or a preprocessor directive to add, to cause enable support for C99 features such as the VLAs.
#include "Window.h"
#include <stdio.h>
int main( int argc, char** argv)
{
   const int size = 1024 ;
   char filename[size]; 
}
 
    