MIPI_BaseC_WebinarFRTK/22_Seminar09/08_VLA_p26.c

12 lines
235 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
#include <stdint.h>
int main(int argc, char **argv)
{
uint32_t n;
scanf("%u",&n); //вводим количество элементов
int32_t ar[n]; //создаем VLA массив
return 0;
}