-
qsortSystem Programming 2007. 11. 1. 16:50728x90#include <stdio.h>
#include <search.h>
#define TABLESIZE 5
int compare(const void *ap, const void *bp)
{
return ( *(int *)ap - *(int *)bp);
}
void main()
{
int table[TABLESIZE]={4,1,2,5,3};
int i;
qsort(table, TABLESIZE, sizeof(int), compare);
for (i=0; i <TABLESIZE; i++)
printf("%d ",table[i]);
printf("\n");
}'System Programming' 카테고리의 다른 글
lsearch / lfind (0) 2007.11.01 프로그램 옵션 처리 예제 (0) 2007.11.01 리눅스 로그인 사용자 명령어 (1) 2007.09.29 select shell script (0) 2007.09.20 실습 보고서 작성 (0) 2007.09.06