int n;
printf("How many?");
scanf("%d", &n);
int array[n];
These are the errors I get..
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'array': unknown size
Any help would be appreciated.