/* Ohjelma j„rjest„„ kolme lukua suuruusj„rjestykseen. */ #include #include #define KOKO 3000 /* Alkioiden vertailufunktio. */ int sort_function(const void *a, const void *b) { return *(int *)a - *(int *)b; } /* Aliohjelmalla tulostetaan taulukon alkuosa */ void tulosta(int luvut[]) { int i; printf("Luvut: "); for (i=0; i