Initialization
This commit is contained in:
parent
d97efb1f8e
commit
48511b4cc8
@ -12,7 +12,7 @@ int main() {
|
|||||||
char **applications;
|
char **applications;
|
||||||
int i, j;
|
int i, j;
|
||||||
|
|
||||||
if (scanf("%d", &count) != 1 || count <= 0) {
|
if (scanf("%d", &count)!= 1 || count <= 0) {
|
||||||
printf("Nespravny vstup\n");
|
printf("Nespravny vstup\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -42,8 +42,18 @@ int main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (i!= count) {
|
||||||
|
printf("Nespravny vstup\n");
|
||||||
|
for (j = 0; j < i; j++) {
|
||||||
|
free(applications[j]);
|
||||||
|
}
|
||||||
|
free(applications);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (i == 0) {
|
if (i == 0) {
|
||||||
printf("Ziadne prihlasky\n");
|
printf("Ziadne prihlasky\n");
|
||||||
|
free(applications);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -52,15 +62,9 @@ int main() {
|
|||||||
|
|
||||||
printf("Prijati studenti:");
|
printf("Prijati studenti:");
|
||||||
for (j = 0; j < i; j++) {
|
for (j = 0; j < i; j++) {
|
||||||
printf("%s\n", applications[j]);
|
printf("\n%s", applications[j]);
|
||||||
}
|
|
||||||
|
|
||||||
if (count < i) {
|
|
||||||
printf("Neprijati studenti:");
|
|
||||||
for (; j < i; j++) {
|
|
||||||
printf("%s\n", applications[j]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
printf("\n");
|
||||||
|
|
||||||
// Free allocated memory
|
// Free allocated memory
|
||||||
for (j = 0; j < i; j++) {
|
for (j = 0; j < i; j++) {
|
||||||
@ -69,4 +73,4 @@ int main() {
|
|||||||
free(applications);
|
free(applications);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user