show/hide this revision's text 2 added 8 characters in body

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);
show/hide this revision's text 1

It is a GCC extension that the current MSVC does not support. You can replace it 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);