#include \"stdio.h\" #include \"Windows.h\"int main(int argc, char* argv[]){ int Count = 0, Minimum = 0, StudentsCount = 0; printf(\"Input count of students:\\"); scanf(\"%i\", &Count); int * Array = (int*)malloc(Count * sizeof(int)); for (int i = 0; i < Count; i++) { printf(\"Input the height of the %i cm student:\\", i + 1); scanf(\"%i\", &Array[i]); } printf(\"Input the minimum height (in cm):\\"); scanf(\"%i\", &Minimum); for (int i = 0; i < Count; i++) { if (Array[i] > Minimum) { StudentsCount += 1; printf(\"%i student: %i cm\\", StudentsCount, Array[i]); } } free(Array); printf(\"The number of students whose growth is higher than %i cm: %i\\", Minimum, StudentsCount); system(\"pause\"); return false;}