Sorting Array Using Function

Sorting Array By Function

#include
#include
#define N 100

void array_sort(int a[],int m);
void main()
{
int b[N];
int i;
int n;//for choice
clrscr();
	printf("\nHow many array element do you want?");
	scanf("%d",&n);
	for(i=0;i


Sorting Array Using function is demonstrated in the Turbo C window below

sorting of array
sorting of array
This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply