SORTING
Bubble Sort
Repeatedly steps through the array, comparing adjacent elements and swapping them if they are in the wrong order.
Time: O(n²) Space: O(1)
  main.c
LINE 1
◧ visualization stage
STEP 1
What's happening
Ready to run.
Variables
Step 0 / 0
SPEED
Educational C execution model — traces real algorithm logic, one statement at a time.