Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Project Name: array_sort_c

Contributors: Devin Forrest

How to Run: Compile with gcc then run the output file gcc sort.c -o sort.o

What it Does: The program first asks the user to provide the size of the array that they want to sort The program then prompts the user for the values in the array to sort once at a time The program then uses qsort to sort the array then prints the sorted array

Why I contributed it: It is a good example of the usage of qsort