/* Variable Length Arrays */
#include <stdio.h>
int
main(void)
{
int size;
printf("Enter the size of the array > ");
scanf("%d", &size);
int myarray[size]; //declaration after the first executable (C99+ only)
printf("Enter %d integer numbers separated by spaces > ", size);
for (int i = 0; i < size; ++i) {
scanf("%d", &myarray[i]);
}
//printing the elements of the array
for (int i = 0; i < size; ++i) {
printf("%d ", myarray[i]);
}
return (0);
}