You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printf("enter quantity\n"); scanf("%d", &n); // считываем к-во эл-в, к-е будет в массиве
A = (int*)malloc(n*sizeof(int)); // выделяем память для массива (n = к-во ячеек памяти, sizeof(int) = сколько памяти надо для интового зн-я (ск памяти будет в одной ячейке))