#include <stdio.h> int main() { int n; printf("Enter the size of the array: "); scanf("%d", &n); int arr[n]; printf("Enter %d elements:\n", n); for (int i = 0; i < n; i++) { scanf("%d", &arr[i]); } printf("The elements in the array are: "); for (int i = 0; i < n; i++) { printf("%d ", arr[i]); } return 0; }
Эта программа позволяет пользователю ввести размер массива, после чего вводит и выводит элементы этого массива.
int main() {
int n;
printf("Enter the size of the array: ");
scanf("%d", &n);
int arr[n];
printf("Enter %d elements:\n", n);
for (int i = 0; i < n; i++) {
scanf("%d", &arr[i]);
}
printf("The elements in the array are: ");
for (int i = 0; i < n; i++) {
printf("%d ", arr[i]);
}
return 0;
}
Эта программа позволяет пользователю ввести размер массива, после чего вводит и выводит элементы этого массива.