forked from wenjun1055/c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
11.6.c
executable file
·47 lines (37 loc) · 1021 Bytes
/
11.6.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <stdlib.h>
#include <stdio.h>
int compare_integers(void const *a, void const *b)
{
register int const *pa = a;
register int const *pb = b;
return *pa > *pb ? 1 : *pa < *pb ? -1 : 0;
}
int main(){
int *array;
int n_values;
int i;
printf("how many values are there?");
if (scanf("%d", &n_values) != 1 || n_values <= 0) {
printf("Illegal number of values.\n");
exit(EXIT_FAILURE);
}
array = malloc(n_values * sizeof(int));
if (NULL == array) {
printf("Can't get memory for that many values.\n");
exit(EXIT_FAILURE);
}
for (i = 0; i < n_values; i++) {
printf("?");
if (scanf("%d", array + i) != 1) {
printf("Error reading value #%d\n", i);
free(array);
exit(EXIT_FAILURE);
}
}
qsort(array, n_values, sizeof(int), compare_integers);
for (i = 0; i < n_values; i++) {
printf("%d\n", array[i]);
}
free(array);
return EXIT_SUCCESS;
}