diff --git a/cv10/program.c b/cv10/program.c index 8e53f19..ee8607c 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -2,14 +2,14 @@ #include #include int compare(const void *a, const void *b) { - return strcmp(*(const char )a, *(const char )b); + return strcmp(*(const char **)a, *(const char **)b); } int main() { int max; char name[50]; - char prihlasky = NULL; + char **prihlasky = NULL; int counter = 0; - prihlasky = (char )malloc(max * sizeof(char *)); + prihlasky = (char **)malloc(max * sizeof(char *)); if (scanf("%d", &max) != 1 || max <= 0) { puts("Nespravny vstup"); return 1;