aktivita 3

This commit is contained in:
Radovan Kofira 2020-11-24 20:08:55 +01:00
parent 7109aca512
commit 751664869a
3 changed files with 10 additions and 2 deletions

8
a3/program.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
int i;
int l = i * 2 + 1;
int r = i * 2 + 2;
return 0;
}

BIN
a3/program.exe Normal file

Binary file not shown.

View File

@ -8,9 +8,9 @@
struct tree {
//otazka ab. odpoved
char value[SIZE];
// Odpoveď áno
// Odpove<EFBFBD> <20>no
struct tree* left;
// Odpoveď nie
// Odpove<EFBFBD> nie
struct tree* right;
}tree;