MIPI_AdvancedC_FRTK/Lect3/25.c
2024-11-14 08:45:50 +03:00

13 lines
208 B
C

#include <stdio.h>
#include <assert.h>
int main() {
int n;
printf("Input natural number: ");
scanf("%d", &n);
assert(n > 0); // Ожидаемое число
int arr[n];
return 0;
}