2 questions
The size of the array is determined at compile time, so to declare an array of dynamic sizes int size;scanf(%d, &size);int* arr = (int*)malloc(sizeof(int) * size); I was taught to do this, but eve...
There was no big problem when the function had 1 variable.However, there was a problem because there were many variables and many declarations.This program applies avg (where to store the mean) and st...
© 2024 OneMinuteCode. All rights reserved.