Whats the difference between doing a malloc and this code? ...to obtain an integer array of size n.
int n;
scanf("%d", &n);
int arr[n];
Actually I was surprised that such a feature exists as it dosent exist in TurboC.Is it a new feature in gcc?