A program to sort the data in ascending order using separate function to read, sort and display. Codes /*A program to sort the data in ascending order using function*/ /*Programed by Jitendra Kr Yadav 10116 22 Mar,2011*/ #include<stdio.h> #include<conio.h> void read(int num[],int); void sort(int num[],int); void display(int num[],int); main() { int n[20],x; […]








