Content deleted Content added
GBGamer117 (talk | contribs) this now compiles; also, a style thing in comments, and style with `sizeof` |
|||
Line 14:
#include <stdlib.h>
/* Comparison function. Receives two
int
int x = *(const int *)p;
int y = *(const int *)q;
Line 31:
/* Sort an array of n integers, pointed to by a. */
void sort_ints(int *a, size_t n) {
qsort(a, n, sizeof
}
</source>
|