void fuelleArray(int a[10]){ srand(time(0)); for(int i=0;i<10;i++){ a[i]=rand()%100; } } void ausgabe(int a[10]){ for (int i=0; i<10; i++) { cout<