#include #include #include #define LINES 10 void merge_sort(int to_sort[LINES], int first, int last); void merge(int arr[LINES], int f1, int l1, int f2, int l2); int main() { int bytes_read, q; int nbytes = 100; char *my_string = NULL; char arrstr[LINES][100]; FILE *infile; char t; int fi; float ff; int array[]= {3, 5, -7, 5679, 12, -4, 8675, 549, -77, -3}; printf("Before sort: "); for (fi=0; fi l1) while (i2 <= l2) t[i++]=arr[i2++]; else while (i1 <= l1) t[i++]=arr[i1++]; // move( arr, i1, l1, t, i); i=0; while ( i<= num-1) arr[f1++]=t[i++]; }