This commit is contained in:
2025-09-10 16:48:26 +02:00
parent 71b9841e88
commit e79d0ca56f
5 changed files with 5 additions and 3 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 = 1;
swapped= 1;
}
}
} while(swapped==1);