int size=5;
int array[size]; // array of size=5;
for(i=0;i<size;i++){
scanf("%d",&array[i]);
}
#include <stdio.h>
int main(void)
{
int size, i;
printf("Enter the size of the arrays:
");
scanf("%d", &size);
int arr1[size];
printf("Enter the elements of the array:
");
for (i = 0; i < size; i++) {
scanf_s("%d", arr1[size]);
}
printf("The current array is:
%d", arr1[i]);
}