new file: "R\303\251sultat.txt"

modified:   bubblesort.c
	new file:   gmon.out
	modified:   student_rank.c
This commit is contained in:
2025-09-10 16:27:36 +02:00
parent ca552281c9
commit 71b9841e88
5 changed files with 54 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ void bubblesort(int* array, int length)
tmp = array[i-1];
array[i-1] = array[i];
array[i] = tmp;
swapped++;
swapped = 1;
}
}
} while(swapped==1);