Commit 789a850f by erfeld

Update Kood.c

parent 521ac7c3
Showing with 5 additions and 1 deletions
......@@ -211,7 +211,11 @@ void info(char a[16], char b[16], char c[16], char d[16]){
int main(void){
char a[16], b[16], c[16], d[16];
sisestus("Sisestage 4x4 Karnaugh kaart voi 16 loogikavaartust: \n", a, b, c, d);
int input;
input = sisestus("Sisestage 4x4 Karnaugh kaart voi 16 loogikavaartust: \n", a, b, c, d);
if (input == 1){
return 1;
}
info(a, b, c, d);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment