This commit is contained in:
James Boutaric
2025-09-10 16:32:27 +02:00
parent e7c653710e
commit 1bf1d139d7
8 changed files with 45 additions and 4 deletions

View File

@@ -55,7 +55,6 @@ int find_rank_student(int student_grade, int* grades_array, int students_number)
{
int position = -1;
int i = 0;
bubblesort(grades_array,students_number);
for(i = students_number-1; i >= 0; i--)
{
if(grades_array[i] == student_grade)