MIPI_AdvancedC_FRTK/Lect3/25.c

13 lines
208 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
#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;
}