Compare commits

..

No commits in common. "9e8d6ca76a7eb3f4fef09d041bc5967969825b39" and "6ff44af0d7dd8d184013ed403d25d8572b29d364" have entirely different histories.

3 changed files with 7 additions and 5 deletions

BIN
du3/test

Binary file not shown.

View File

@ -4,9 +4,11 @@
#define LINE_SIZE 999
int main(){
int a = 0;
scanf("%d\n"&a)
if(a == 4)
printf("Vysledok je: 57.00\n");
char riadok[LINE_SIZE];
memset(riadok, 0,LINE_SIZE);
char* r = fgets(riadok,LINE_SIZE,stdin);
if(r == NULL){
exit(0);
}
return 0;
}