Program to sort numbers using counting sort and save the o/p in a file using FILE handling
/********************************************************************* * Program to sort numbers using counting sort and save * the o/p in a file using FILE handling **********************************************************************/ #include<stdio.h> #include<stdlib.h> #define MAXSIZE 500 void selection(int elements[], int maxsize); int elements[MAXSIZE],maxsize; void main() { int i; FILE *f; printf("\nHow many elements you want to sort: "); scanf("%d",&maxsize); printf("\nEnter the values one by one: "); for (i = 0; i < maxsize; i++) { printf ("\nEnter element %i :",i); scanf("%d",&elements[i]); } f=fopen("a.txt","w"); if(f==NULL) { printf("\nUnable to write in to the file\n"); exit(1); } //fprintf(f,"\nArray before sorting:\n"); //for (i = 0; i < maxsize; i++) //fprintf(f,"[%i], ",elements[i]); //fprintf (f,"\n"); selection(elements,maxsize); /...