/* strcoll.c */ #include #include #include int main(void) { char *j1="„„li”",*j2="†land"; setlocale(LC_ALL,""); printf("%s > %s. strcoll: %d, strcmp: %d\n",j1,j2, strcoll(j1,j2),strcmp(j1,j2)); return 0; }