Sorting an array in increasing order using a pointer.
I will get to the code and please keep in mind this code is not for newbie
your basics should be clear enough to understand this
#include <stdio.h>
void sort(int *x);
int main()
{
int i;
int a[] = { 0, 23, 14, 12, 9 };
sort(a);
fo...
variable.hashnode.dev1 min read