2026-06-18 09:03:11 +02:00

9 lines
127 B
C

#include "sortierung.h"
void tausche(int *zahl1, int *zahl2)
{
int tmp = *zahl1;
*zahl1 = *zahl2;
*zahl2 = tmp;
}