#include <stdio.h>
#include <stdlib.h>
int main()
{
int numbers[10] = {12,33,51,1,-1,97,7,23,0,-99};
sort(numbers,10);
display(numbers,10);
return 0;
}
void sort(int *numbers, int size)
{
/*
Hop you could help me provide codes to sort the numbers. after calling this function, the numbers array in main should be sorted.
hint: use the size for looping
*/
}
void display(int *numbers, int size)
{
/*
this will print the array of integers that has been called.
*/
}
pls help me, i am still learning..:( hop you can help me..tnx :)