Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

How to sort array of numbers using qsort in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>

int compare(const void * a, const void * b) {
    return ( *(int*)a - *(int*)b );
}

int main()
{
  int arr[] = {5, 8, 1, 9, 0, 5, 4, 2};
  int size = sizeof(arr)/sizeof(arr[0]);

  qsort(arr, size, sizeof(int), compare);
  
  for (int i = 0; i < size; i++)
     printf("%d ", arr[i]);
     
  return 0;
}




/*
run:

0 1 2 4 5 5 8 9 
    
*/    

 



answered Nov 11, 2021 by avibootz

Related questions

1 answer 206 views
206 views asked Dec 4, 2019 by avibootz
1 answer 306 views
1 answer 87 views
87 views asked Jan 19, 2024 by avibootz
1 answer 150 views
1 answer 128 views
...