행복한 프로그래밍

chess

영웅*^%&$ 2018. 2. 20. 18:53
728x90

#include <stdlib.h>

int numcmp(char *s1, char *s2)
{
    double v1, v2;

    v1 = atof(s1);
    v2 = atof(s2);
    if (v1 < v2)
        return -1;
    else if (v1 > v2)
        return 1;
    else
        return 0;
}

void swap(void *v[], int i, int j)
{
    void *temp;

    temp = v[i];
    v[i] = v[j];
    v[j] = temp;
}

728x90

'행복한 프로그래밍' 카테고리의 다른 글

initial  (0) 2018.02.20
fahr >> upper  (0) 2018.02.20
factorial  (0) 2018.02.20
ID의 원리   (0) 2018.02.20
단순한 오타  (0) 2018.02.09