Why on Windows we can' t declare an array with a variable for array's size?
e.g.
void func(int size)
{
int array[size];
}
On Linux systems we can do it.
Even the GCC compiler for Windows don't support it.
e.g.
void func(int size)
{
int array[size];
}
On Linux systems we can do it.
Even the GCC compiler for Windows don't support it.
Comment